function NewWindow(mypage,myname,w,h,pos,infocus){
if(pos=="righttop"){myleft=(screen.width)?(screen.width-w-10):100;mytop=0;}
if(pos=="right"){myleft=(screen.width)?(screen.width-w-10):100;mytop=(screen.height)?(screen.height-h-80):100;}
if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
if(pos=="top"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=0;}
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
if(myname=="alonefoto"){settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";}
if(myname=="foto"){settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";}
win=window.open(mypage,myname,settings);
win.focus();}
