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