function PopWin(file,winw,winh){
	dd = new Date();
	window.open( file,"popwin"+dd.getTime(),"resizable=yes,scrollbars=no,menubar=no,directories=no,status=yes,location=no,width="+winw+",height="+winh+",left=100,top=50");
}
function PopWinSc(file,winw,winh){
	dd = new Date();
	window.open( file,"popwin2"+dd.getTime(),"resizable=yes,scrollbars=yes,menubar=no,directories=no,status=yes,location=no,width="+winw+",height="+winh+",left=100,top=30");
}
function PopWinFull(file,winw,winh){
	dd = new Date();
	winh = screen.height;
	winw = screen.width;
	window.open( file,"popwin2"+dd.getTime(),"resizable=yes,scrollbars=yes,menubar=no,directories=no,status=yes,location=no,width="+winw+",height="+winh+",left=100,top=30");
}
function PopWinNRe(file,winw,winh){
	dd = new Date();
	window.open( file,"popwin3"+dd.getTime(),"resizable=no,scrollbars=no,menubar=no,directories=no,status=yes,location=no,width="+winw+",height="+winh+",left=100,top=50");
}
function moveWin(url){
	window.opener.location.href=url;
	window.close();
}