// JavaScript Document

function inquiryNow(){
	var f=document.forms['form'];
	f.cart.value=0;
	f.submit();
}

function addBasket(){
	var f=document.forms['form'];
	f.cart.value=1;
	f.submit();
	
}

function checkform(){
	var f=document.forms['form'];
	
	if(f.title.value==""){
	alert("sorry, your title is empty");
	f.title.focus();
	return false;	
		
	}	
	
	if(f.email.value==""){
	alert("sorry, your email is empty");
	f.email.focus();
	return false;		
	}
	
	if(f.name.value==""){
	alert("sorry, your Name is empty");
	f.name.focus();
	return false;		
	}
	
	if(f.tel1.value==""){
	alert("sorry, the Country Number is empty");
	f.tel1.focus();
	return false;	
	}
	if(f.tel2.value==""){
	alert("sorry, the Area Number is empty");
	f.tel2.focus();
	return false;	
	}
	if(f.tel3.value==""){
	alert("sorry, the Number is empty");
	f.tel3.focus();
	return false;	
	}
	
	if(f.message.value==""){
	alert("sorry, the Message is empty");
	f.message.focus();
	return false;	
		
	}
	
	return true;
}


