function ctf(theText) 
{
	if(theText.value == theText.defaultValue) 
	{
		theText.value = "";
	}
}
function rtf(theText) 
{
	if(theText.value == "") 
	{
		theText.value = theText.defaultValue;
	}
}
function l2s(elem) 
{
	if(elem.value == elem.defaultValue || elem.value == "") 
	{
		elem.focus();
		return false;
	}
	return true;
}
function gotoContact(elem)
{
	if(l2s(elem))
	{
		window.location = "http://www.healthday.com/contact-healthday.html?f="+elem.value;
	}
}
