// JavaScript Document
function chk_form(){
	var temp=true;
	popMessage="";
	if(temp){
		temp=chk_Null(document.getElementById("fname"),'FirstName');
	}	
	if(temp){
		temp=chk_Null(document.getElementById("lname"),'LastName');
	}		
	if (temp){
		temp=chk_Email(document.getElementById("email"),'Email');
	}
	if (temp){
		if (document.getElementById("email").value !=document.getElementById("reemail").value){
			temp=false;
			popMessage="please confirm you email address with Confirm Email";
		}
	}
	if (!temp){
		alert(popMessage)
	}
	return temp;	
}
function chk_form2(){
	var temp=true;
	popMessage="";
	if(temp){
		temp=chk_Null(document.getElementById("sbuject"),'Subject');
	}	
	if(temp){
		temp=chk_Null(document.getElementById("inquiry"),'Inquiry');
	}		

	if (!temp){
		alert(popMessage)
	}
	return temp;	
}
function chk_searchform(){
	var temp=true;
	temp=chk_Null(document.getElementById("keyword"),'Keyword');
	if (!temp){
		alert(popMessage)
	}
	return temp;		
}