function idCheck(){	
	if(document.login.id.value=="" || document.login.id.value=="¾ÆÀÌµð ÀÔ·Â") {alert("¾ÆÀÌµð¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä");document.login.id.focus();return;}
	if(document.login.pwd.value=="" || document.login.pwd.value=="ºñ¹Ð¹øÈ£ ÀÔ·Â") {alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä");document.login.pwd.focus();document.login.id.focus();return;}
	document.login.submit();
}
function id_focus(frm){
	frm.id.style.backgroundImage = '';
}
function pwd_focus(frm){
	frm.pwd.style.backgroundImage = '';;
}

function popWin(reURL,width,height) {

	var str, width,height;
	var iMyWidth;
    var iMyHeight;
        iMyWidth = (window.screen.width/2) - (width + 10)/2; 
        iMyHeight = (window.screen.height/2) - (height + 50)/2;
	//var userid
	//	if (document.membercheck.userid.value != ""){
	//		URL = reURL + "?user_id=" + document.membercheck.userid.value;}
	//	else{
			URL = reURL;
	//}
	str="'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=no,copyhistory=no,";
	str=str+"width="+width;
	str=str+",height="+height;
	str=str+",screenX=" + iMyWidth + ",screenY=" + iMyHeight +"'";

	window.open(URL,'remote',str);
}