function Window(name,width,height,left,scrollbar,toolbar,url){
         wset='scrollbars=' + scrollbar + ',width=' + width + ',height=' + height + ',top='+(screen.availHeight-height)/2+',left=' + (screen.availWidth-width)/2 + ',toolbar=' + toolbar;
         newWindow=window.open('',name,wset);
         newWindow.document.open();
         if (navigator.appName=="Netscape" && navigator.appVersion.substring(0,1)< 5){
            newWindow.document.write('<html><body onload="' + "self.location.href='" + url + "'" + '"></body></html>');
         }else{
            newWindow.document.location.href=url;
         }
         newWindow.document.close();
         newWindow.focus();
}
