// JavaScript Document
function checkL(){
	if(document.getElementById("LoginControl1_UserName").value==""){
		alert(msg1);
		document.getElementById("LoginControl1_UserName").focus();
		return false;
	}
	if(document.getElementById("LoginControl1_Password").value==""){
		alert(msg2);
		document.getElementById("LoginControl1_Password").focus();
		return false;
	}
	return true;
}

function opwRegist(){
 	var w=(window.screen.width-780)/2;
	var h=(window.screen.height-600)/2;
	var	url="../order/login.aspx?flag=reg";
	window.open(url,'OrderCenter',"fullscreen=no,channelmode=no,toolbar=mp,location=yes,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=780,top="+h+",height=530,left="+w);
}
