// JavaScript Document
<!-- start new window here-->
var win= null;
function NewWindow(mypage,myname,w,h,scroll){
var winl = (screen.width-w)/1;
var wint = (screen.height-h)/1;
settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=0'+scroll+',toolbar=0,location=0,status=0,menubar=0,resizable=0,dependent=0,directories=no'
win=window.open(mypage,myname,settings)
if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}
// end script here -->

<!-- start modeless window-->
function modelesswin(url,mwidth,mheight){
if (document.all&&window.print) //if ie5
eval('window.showModelessDialog(url,"","help:0;resizable:1;dialogWidth:'+mwidth+'px;dialogHeight:'+mheight+'px")')
else
eval('window.open(url,"","width='+mwidth+'px,height='+mheight+'px,resizable=1,scrollbars=1")')
}

// end script here -->

<!-- start new window here
var win= null;
function NewWindow(mypage,myname,w,h){
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=yes,dependent=no,directories=no'
win=window.open(mypage,myname,settings)
if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}
// end script here -->

