
function join() {
   var str;

str = document.qmemo.title.value;
if(str=="0"){
alert("¹®ÀÇÁ¦¸ñÀ» ¼±ÅÃÇØ ÁÖ¼¼¿ä.");
document.qmemo.title.focus();
return true;
}

str = document.qmemo.name.value;
if(str==""){
alert("ÀÛ¼ºÀÚ¸íÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä.");
document.qmemo.name.focus();
return true;
}

str = document.qmemo.tel.value;
if(str==""){
alert("ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä.");
document.qmemo.tel.focus();
return true;
}

str = document.qmemo.wrNumber.value;
if(str==""){
alert("ÀÚµ¿±Ûµî·Ï¹æÁö¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä....")
document.qmemo.wrNumber.focus();
return true;
}

str = document.qmemo.checker.value!= document.qmemo.wrNumber.value;
if(str){
alert("ÀÚµ¿±Ûµî·Ï¹æÁö¹øÈ£°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù.")
document.qmemo.wrNumber.focus();
return true;
}

document.qmemo.submit(); 
return true;
}



