// JavaScript Document


function openWin(theURL,winName,w,h) { //v2.0
x=(screen.width-w)/2;
y=(screen.height-h)/2;
features="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+w+",height="+h+",left="+x+",top="+y;
window.open(theURL,winName,features);
}




function openNews(theURL,winName) { //v2.0
w=460;
h=500;

x=(screen.width-w)/2;
y=(screen.height-h)/2;
features="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+w+",height="+h+",left="+x+",top="+y;
window.open(theURL,winName,features);
}