function validateForm(theName){
	if (theName.itemsearch.value=="")
	{
		alert ("Lengkapi field search")
		theName.itemsearch.focus();
		return false
	}
	else if (theName.tipe.value=="")
	{
		alert ("Pilih tipe item")
		theName.tipe.focus();
		return false
	}
	return (true);
}

function validateFormBooking(theName){
	if (theName.txtName.value=="")
	{
		alert ("Lengkapi field Nama Anda")
		theName.txtName.focus();
		return false
	}
	else if (theName.alamat1.value=="" && theName.alamat2.value=="")
	{
		alert ("Lengkapi alamat Anda")
		theName.alamat1.focus();
		return false
	}
	else if (theName.alamat1.value=="" && theName.alamat2.value=="")
	{
		alert ("Lengkapi alamat Anda")
		theName.alamat1.focus();
		return false
	}
	else if (theName.email.value=="")
	{
		alert ("Lengkapi email Anda")
		theName.email.focus();
		return false
	}
	else if (theName.telp.value=="")
	{
		alert ("Lengkapi telepon Anda")
		theName.telp.focus();
		return false
	}
	else if (theName.captcha.value=="")
	{
		alert ("Lengkapi Kode Captcha/Gambar")
		theName.captcha.focus();
		return false
	}
	return (true);
}