var win=null;
function NewWindow(mypage,n,w,h,scroll,pos){
if(!n){n='image'};
//if(!w){w='660'};
//if(!h){h='490'};
if(!w){w='800'};
if(!h){h='600'};
if(!scroll){scroll='yes'};
if(!pos){pos='center'};
if(pos=='random'){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=='center'){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=0,directories=0,status=0,menubar=0,toolbar=0,resizable=1,channelmode=0,dependent=1,toolbar=0,fullscreen=0';
win= window.open(mypage,n,settings);
//var remote = window.open(mypage,n,settings,'test1');
//  if (remote.opener == null) remote.opener = window; 
//  remote.opener.name = 'test1';
//  remote.focus();
//  return remote;
}

