﻿// JScript File
var hasBeenLoaded = false;

function WriteEmailAddress (name, domain, topLevelDomain, css)
{
  document.write('<a');
  if (css.length > 0)
  {
	document.write(' class=\"' + css + '\"');
  }
  document.write(' href=\"mailto:' + name + '@' + domain + '.' + topLevelDomain + '\">');
  document.write(name + '@' + domain + '.' + topLevelDomain + '</a>');
}

function ShowContentBlock(theId)
{
	if(hasBeenLoaded)
	{
	  HideContentBlocks();
	  document.getElementById('myContent' + theId).style.display = 'block';
	  document.getElementById('myPicture'+ theId).style.display = 'none';
	}
}

function HideContentBlocks()
{
	if(hasBeenLoaded)
	{
	  document.getElementById('myContent1').style.display = 'none';
	  document.getElementById('myPicture1').style.display = 'block';
	  document.getElementById('myContent2').style.display = 'none';
	  document.getElementById('myPicture2').style.display = 'block';
	  document.getElementById('myContent3').style.display = 'none';
	  document.getElementById('myPicture3').style.display = 'block';
	}
} 

function CheckForRSSFeed()
{
  if (document.URL.indexOf('&M=News') != -1)
  {
	var newUrl = document.URL;
	newUrl = newUrl.replace(/&M=News/, '');
	newUrl = newUrl + '&PID=176';
	location.href= newUrl;
  } 
}


