<!--  
function CheckForm()
{

	if(document.cform.g_job.value=="")
	{
		alert("請填寫應徵職務!");
		document.cform.g_job.focus();
		return false;
	}
	
	if(document.cform.g_name.value=="")
	{
		alert("請填寫姓名!");
		document.cform.g_name.focus();
		return false;
	}
	
	if(document.cform.g_age.value=="")
	{
		alert("請填寫年齡!");
		document.cform.g_age.focus();
		return false;
	}


	if(document.cform.g_sex.value=="")
	{
		alert("請填寫性別!");
		document.cform.g_sex.focus();
		return false;
	}
	
	if(document.cform.g_school.value=="")
	{
		alert("請填寫學歷!");
		document.cform.g_school.focus();
		return false;
	}
	
	if(document.cform.g_tel.value=="")
	{
		alert("請填寫聯絡電話!");
		document.cform.g_tel.focus();
		return false;
	}
	
	if(document.cform.g_comment.value=="")
	{
		alert("請填寫自傳!");
		document.cform.g_comment.focus();
		return false;
	}
}

//-->