// Window Open

function popup(theURL,winName,features) { //v2.0
 newWin = window.open('','new','scrollbars=no,resizable=no,width=680,center=1,height=290,left=200px,top=100px');
 newWin.location.replace(theURL);
 newWin.focus();
 onLoad="window.focus()"
}
