function email(emname,domain)
	{
	var email = "Mailto:"+emname + "@"+domain;
	document.location=email;
	}


function goSelectLanguage(){
    if (document.selectlanguage.category.options[document.selectlanguage.category.selectedIndex].value == "")
            return;
        else {
        var URL = document.selectlanguage.category.options[document.selectlanguage.category.selectedIndex].value;
      location.href = URL;
    }
}


function SwapVisibility(sObj) {
	 xbody.style.display = "none"       
     xheader.style.display = "none"
	 xitem.style.display = "none"       
	 xthread.style.display = "none" 
  if (sObj == "xbody"){xbody.style.display = "block"} 
  if (sObj == "xheader"){xheader.style.display = "block"}
  if (sObj == "xitem"){xitem.style.display = "block"} 
  if (sObj == "xthread"){xthread.style.display = "block"} 
  
}
