/*
ºó°ø°£ ÀÔ·Â Ã¼Å©
*/
function chkText(name,txt)
{
	if(document.all[name].value == "" || document.all[name].value == null){
		alert(txt+" ÀÔ·ÂÇÏ¼¼¿ä.");
		//document.all[name].focus();
		return false;
	}
	/*else if(!chkSpaceB(document.all[name],txt))
	{
		return false;
	}*/
	return true;
}

/*
ÀÌ¸ÞÀÏ ÀÔ·Â Ã¼Å©
*/
function chkEmail(name,txt)
{
	if(chkText(name,txt))
	{
		if(document.all[name].value.indexOf("@") == -1 || document.all[name].value.indexOf(".") == -1)
		{
			alert("Á¤È®ÇÑ E-MailÀ» ÀÔ·ÂÇÏ¼¼¿ä.");
			document.all[name].focus();
			document.all[name].value="";
			return false;
		}
		return true;
	}
	return false;
}


/**
 * ÀÔ·Â°ª¿¡ ½ºÆäÀÌ½º°¡ ÀÖ´ÂÁö Ã¼Å©
 */
function chkSpaceB(ColName,ColLabel)
{
	if(spaceB(ColName.value) == true)
    {
        return true;
    }      
    else
    {
        alert(ColLabel + "¿¡ °ø¹éÀÌ ÀÖ½À´Ï´Ù. ´Ù½Ã ÀÔ·ÂÇØ ÁÖ¼¼¿ä");
        //ColName.focus();
        //ColName.select();
        return false;
    }
}

function spaceB(name) {
    var ch = '\0';
    for (var i = 0, ch = name.charAt(i);
        (i < name.length); ch = name.charAt(++i))
    {
        if (ch == ' ')
             return false;
    }
    return true;
}