I don't think example code will get me anywhere, the combination of code is so basic, but the damn message is irritating.
to call the popup window function
function myopen(archivevar)
{
if(archivevar.length < 1)
archivevar = 0;
var popupWindow = open(popuppath+'?archive='+archivevar,'popupWindow','resizable=no,width=400,height=165,left=200,top=100');
if (popupWindow.opener == null)
popupWindow.opener = self;
}
The popup window has a very basic form in it.
(no reason to post that. the form contains a textbox)
the popup submits to another page
which has a request of the textbox
<%
if (request.form("name") = 0) then
Session("caseid") = ""
else
Session("caseid") = request.form("name")
end if
%>
<head>
<title></title>
</head>
and this simply reloads the opener and closes the popup window.
I will scrounge more, but i am trying to get around the damn message.