function ValidateSmallContact(){
	
	var valid = true;	
	if ((document.SmallForm.fullname.value.length < 2)||(document.SmallForm.fullname.value=="Full Name"))
	{
	alert ("Your Full Name is necessary");
	document.SmallForm.fullname.focus();
	document.SmallForm.fullname.value="";
	document.SmallForm.fullname.style.borderColor = "#333";
	valid = false;
	}
	
	else if ((document.SmallForm.email.value.indexOf ('@', 0) == -1)||(document.SmallForm.email.value.length < 5)) {
	alert("Write the correct e-mail");
	document.SmallForm.email.focus();
	document.SmallForm.email.value="";
	document.SmallForm.email.style.borderColor = "#333";
	valid = false;
	}
	
	else if((document.SmallForm.phone.value.length < 10)||(document.SmallForm.phone.value == "Contact Phone"))
	{
	alert ("Please, enter your correct phone number, for example: 9536846987 (10 numbers as minimum)");
	document.SmallForm.phone.value="";
	document.SmallForm.phone.focus();
	document.SmallForm.phone.style.borderColor = "#333";
	valid = false;
	}
	
	else if ((document.SmallForm.day.value == "Expected Travel Date")||(document.SmallForm.day.value.length < 9)){
	alert("Please, the correct form is for example 06/28/2010");
	document.SmallForm.day.focus();
	document.SmallForm.day.value="";
	document.SmallForm.day.style.borderColor = "#333";
	valid = false;
	}
	
	else if((document.SmallForm.tourname.value.length < 2)||(document.SmallForm.tourname.value == "Tour Name"))
	{
	alert ("Please, insert the name of tour of your interest");
	document.SmallForm.tourname.value="";
	document.SmallForm.tourname.focus();
	document.SmallForm.tourname.style.borderColor = "#333";
	valid = false;
	}
	
	return valid;
}

function onClickTour(){
	document.SmallForm.tourname.value='';
}
	
function onBlurTour(){
	document.SmallForm.tourname.value=(document.SmallForm.tourname.value=='')?'Tour Name':document.SmallForm.tourname.value;
}
