function fillhomesearch() {
	if (document.quicksearchfrom.search.value == "Enter a destination, hotel, attraction, or restaurant.")	{
		document.quicksearchfrom.search.value = "";
	}
}

function clearhomesearch() {
	if (document.quicksearchfrom.search.value == "") {
		document.quicksearchfrom.search.value = "Enter a destination, hotel, attraction, or restaurant.";
	}
}

function fillemailalert() {
	if (document.emailalertform.emailalertbox.value == "Enter Your Email")	{
		document.emailalertform.emailalertbox.value = "";
	}
}

function clearemailalert() {
	if (document.emailalertform.emailalertbox.value == "") {
		document.emailalertform.emailalertbox.value = "Enter Your Email";
	}
}
