That did not fix or change the behavior.
I had included a simple example in the original email. Here it is
again:
THIS IS THE CODE FOR THE MASTER TEMPLATE:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<script language="JavaScript">
<!--
function openWin (){
popupNamesDefault=window.open("testPopup.htm",
"popupWin", "width=200px,height=100px,top=25px,left=25px,scrollbars=1,resizable=1,menubar=1")
}
// -->
</script>
</head>
<body>
<input name="testOpen" id="testOpen" onclick="openWin()" value="Open Popup" type="button">
</body>
</html>
THIS IS THE CODE FOR THE POPUP WINDOW. Create a separate template with the following code named testpopup.htm
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head></head>
<body>
Test Window
<input name="btnClose" id="btnClose" onclick="window.close()" value="Close Window" type="button">
</body></html>