// JavaScript Document
var win = null;
var resizable = null;
var scrollbars = null;
function NewWindow(newpage,newname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
if (scroll = 'yes') { resizable == ' ,resizable'; }
if (scroll = 'yes') { scrollbars == ' ,scrollbars'; }
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+scrollbars+resizable
win = window.open(newpage,newname,settings)
}