// JavaScript Document
function checkL(){
	if(document.getElementById("LoginControl1_UserName").value==""){
		alert("pls input username!");
		document.getElementById("LoginControl1_UserName").focus();
		return false;
	}
	if(document.getElementById("LoginControl1_Password").value==""){
		alert("pls input password!");
		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/regist.aspx";
	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);
}
