function accordianOpen(aid) 
{
	var i = 0;
	while(elem = document.getElementById("accordian"+(++i)))
	{
		elem.className = (i==aid) ? "acrd acrd-o" : "acrd acrd-x";
	}
}
function ctf(theText) 
{
	if (theText.value == theText.defaultValue) 
	{
		theText.value = "";;
	}
}
function rtf(theText) 
{
	if (theText.value == "") 
	{
		theText.value = theText.defaultValue;
	}
}
function l2s(theForm) 
{
	if (theForm.q.value == theForm.q.defaultValue) 
	{
		theForm.q.focus();
		return false;
	}
	return true;
}
function gotoContact(elem)
{
	window.location = "/contact-healthday.html?f="+elem.value;
}
