<!--
/*function to Hide Left Navigation*/
function DisplayTable(TableId)
{
	element = document.getElementById(TableId);
	if(element.style.display=='none')
	{
		element.style.display='block';
	}else{
		element.style.display='none';
	}
}

function HideTable(TableId)
{
	element = document.getElementById(TableId);
	element.style.display='none';
}

//formmailer 
function CheckFormMailer()
{
	AttentionColor="#FF8080";
	chk = true;
	if(document.mailerform.email.value == "")
	{
		document.mailerform.email.style.background =AttentionColor;
		chk=false;
	}else{
	 	if (document.mailerform.email.value.indexOf('@')==-1)
		{
			document.mailerform.email.style.background =AttentionColor;
			chk=false;
		}
	 	if (document.mailerform.email.value.indexOf('.')==-1)
		{
			document.mailerform.email.style.background =AttentionColor;
			chk=false;
		}
	}
	
	 if (document.mailerform.realname.value == "")
	{
		document.mailerform.realname.style.background =AttentionColor;
		chk=false;
	}
	
	 if (document.mailerform.message.value == "")
	{
		document.mailerform.message.style.background =AttentionColor;
		chk=false;
	}
	
	return chk;
}
 function ResetMailFormColor()
 {
 	document.mailerform.realname.style.background='white';
 	document.mailerform.message.style.background='white';
 	document.mailerform.email.style.background='white';
 }
 
 
//-->