
  // JS function for uncrypting spam-protected emails:
function UnCryptMailto(name, base, ext) {	//
	
	return name+"@"+base+"."+ext;
}
  // JS function for uncrypting spam-protected emails:
function linkTo_UnCryptMailto(name, base, ext)	{	//
	location.href="mailto:"+UnCryptMailto(name, base, ext);
}
		
	function openPic(url,winName,winParams)	{	//
		var theWindow = window.open(url,winName,winParams);
		if (theWindow)	{theWindow.focus();}
	}
	
function setActiveTab(tabName){
		 var foo = document.getElementById(tabName);
	 foo.className = "uberlink";
	// alert(foo.getAttribute("class"));
}
 
