<!--
function NewWindow(mypage,myname,w,h,scroll,resizable)
  {
    
	LeftPosition = (screen.width) ? (screen.width-w)/8 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/8 :0;
//	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+'';
	settings ='screenX=0,screenY=50,status=no,toolbar=no,width=770,height=510,directory=no,resize=no,scrollbars=yes';
	win = window.open(mypage,myname,settings);
	
  }


