function NewWindow(mypage,myname,w,h,scroll,pos){
	LeftPosition=(screen.width)?(screen.width-w)/2-6:100;
	//LeftPosition=0
	TopPosition=100
	//TopPosition=((screen.height)?(screen.height-h)/2-30:100);
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	win=window.open(mypage,myname,settings);
	}
