<!--

function toggleSubMenu( id )
{
	// if the element at id is showing, hide it
	if( document.getElementById( id ).style.display == "block" )
	{
		document.getElementById( id ).style.display = "none";
	}
	// if the element at id is hidden, show it
	else
	{
		document.getElementById( id ).style.display = "block";
	}
}

function sendEmail( theForm )
{
	document.form_send.submit();
	if( /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test( theForm.email.value ) )
	{
		document.form_send.submit();
	}
	else
	{
		alert("Invalid E-mail Address! Please re-enter.")
	}
}
//-->
