// 8-20-07
// these functions will show and hide the reverse images of the
// "Contact Us" and "Legal" links which appear at the bottom of each page...

function showContactReverse()
{
 if (navigator.appName == "Microsoft Internet Explorer")
	  {
	  	//alert("1) "+navigator.appName);
		document.thisPage.contactReverse.style.left=21+"px";
		document.thisPage.contactReverse.style.top=537+"px";
	  }
	  else
	  {
	  	//alert("2) "+navigator.appName);
	  	document.thisPage.contactReverse.style.left=21+"px";
		document.thisPage.contactReverse.style.top=549+"px";
	  }
}
	
	function showContactNormal()
	{
		document.thisPage.contactReverse.style.left=-100+"px";
		document.thisPage.contactReverse.style.top=-100+"px";
	}

function showLegalReverse()
{
	 if (navigator.appName == "Microsoft Internet Explorer")
	  {
	  	//alert("1) "+navigator.appName);
		document.thisPage.legalReverse.style.left=884+"px";
		document.thisPage.legalReverse.style.top=537+"px";
	  }
	  else
	  {
	  	//alert("2) "+navigator.appName);
	  	document.thisPage.legalReverse.style.left=884+"px";
		document.thisPage.legalReverse.style.top=549+"px";
	  }
}
	
	function showLegalNormal()
	{
		document.thisPage.legalReverse.style.left=-100+"px";
		document.thisPage.legalReverse.style.top=-100+"px";
	}
