Ì have the following function:
Code:
function myopen(url,name,parms) { 
    var handle = window.open(url,name,parms); 
    if (!handle.opener) handle.opener = self; 
    return handle; 
}
I want to run this function on from ServerSide Script. I am receiving the names of html files from a querystring and I'm trying to open them when the page loads.
I want to use the the following:
[code]
myString = Request.Querystring;
myopen("myString","NEW WINDOW");
[/code}
Can someone please tell me how to use this client side function so that it runs from the server.
Thanks a lot
Johnny