// Mouseover Caption Text-Change
function chngtxt(textt) 
{
	var caption = document.getElementById("caption");
	caption.firstChild.nodeValue=textt;
}
// Toggle an element's Display property
function getEl(id) 
{ 
	return document.getElementById(id); 
}
function showhide(id) 
{ 
	getEl(id).style.display =  getEl(id).style.display == 'none' ? '' : 'none'; 
}
function togTopAd() 
{
	if(document.getElementById) 
	{
		var topAd = document.getElementById("topAdBanner");
		var topAdLk = document.getElementById("tLink");
		
		if (topAd.style.display == "none")
		{
			topAd.innerHTML = '<a href="http://ads.jobclicks.net/ads/banman.asp?ZoneID=60&Task=Click&Mode=HTML&SiteID=6&PageID=80619" target="_new"><img src="http://ads.jobclicks.net/ads/banman.asp?ZoneID=60&Task=Get&Mode=HTML&SiteID=6&PageID=80619" width="720" height="300" border="0"></a>';
			topAd.style.display = "";
			topAdLk.innerHTML = "Close Advertisement";
			topAdLk.title = "Close Advertisement";
		}
		else 
		{
			topAd.style.display = "none";
			topAd.innerHTML = "";
			topAdLk.innerHTML = "Open Advertisement";
			topAdLk.title = "Open Advertisement";
		}
	}	
}
