function winOnLoad(url,features){
var isIE = "0";
var isNS = "0";
var hyperText;
var HrefLocation;
var Server;
var Folder;
var PageName;

HrefLocation = location.href.split("/");
hyperText = HrefLocation[0];
Server = HrefLocation[2];
Folder = HrefLocation[3];
PageName = HrefLocation[4];
PageName = PageName.split("?");
PageName = PageName[0].split(".");
PageName = PageName[0];

fullurl =hyperText + "//" + Server + "/" + Folder + "/" + url;

if (navigator.userAgent.indexOf("MSIE") != -1){
 var isIE = "1";
}else{
 var isNS = "1";
}

if (isIE == "1"){
parent_size= "width="+document.body.clientWidth+
",height="+document.body.clientHeight;
fullurl = fullurl + '&psize='+parent_size;
winOpener = window.open (fullurl, 'onload_window', features);
}else{
 parent_size= "width="+window.outerWidth+
",height="+window.outerHeight;
fullurl = fullurl + '&psize='+parent_size;
winOpener = window.open (fullurl, 'onload_window', features);
}
}