var win = null;
function NewWindow(url,myname){
<!--LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;-->
<!--TopPosition = (screen.height) ? (screen.height-h)/2 : 0;-->
settings =
'height=625,width=800,left=0,top=0,resizable=no,scrollbars=no,status=no,menubar=no'
win = window.open(url,myname,settings)
if (window.focus) {win.focus()}
}
