
var win = null; function NewWindow(mypage,myname,w,h,s){ LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; TopPosition = (screen.height) ? (screen.height-h)/2 : 0; if (s=='all')
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=yes,directories=yes,statusbar=yes,menubar=yes,toolbar=yes,resizable=yes'; else
if ((s=='none') || (s==''))
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,statusbar=no,menubar=no,toolbar=no,resizable=no'; else
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+','+s; win = window.open(mypage,myname,settings)
win.focus();}
