var win=null;
function NewWindow(mypage,myname,w,h,pos,infocus){
if((pos!='center' && pos!="random") || pos==null){myleft=33;mytop=33}
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=yes,directories=yes,status=yes,menubar=yes,toolbar=yes,resizable=yes";win=window.open(mypage,myname,settings);
win.focus();}