<!--
function formcheck(formname)
{
		
	if(formname.subject.value == "" )
	{
		alert("Á¦¸ñÀ» ÀÔ·ÂÇÏ¼¼¿ä");
		formname.subject.focus();
		return false;
	}

	if(formname.content.value == "" )
	{
		alert("³»¿ëÀ» ÀÔ·ÂÇÏ¼¼¿ä");
		formname.content.focus();
		return false;
	}
	if(formname.attach_file1 != null && formname.attach_file1.value != '')
	{
		foto = formname.attach_file1.value;
		if(foto.length && foto.substring(foto.length-3, foto.length).toUpperCase()!='GIF' && 
		   foto.substring(foto.length-3, foto.length).toUpperCase()!= 'JPG' &&
		   foto.substring(foto.length-3, foto.length).toUpperCase()!= 'BMP'	)
		{
			alert("±×¸²ÆÄÀÏ¸¸ ¿Ã¸±¼ö ÀÖ½À´Ï´Ù");
			formname.attach_file1.focus();
			return false;
		}
	}
	return true;
}

function change_state(formnaem,str) {
	return true;
}
//-->