function OpenNewWindow(mypage,w,h,myname){
var winl = (screen.width-w)/0;
var wint = (screen.height-h)/0;
settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no'
window.open(mypage,myname,settings);
//if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}