<!-- Javascript Function for Popup Window Open -->
function popup(targeturl){
window.open(targeturl,"","resizable=yes,scrollbars=yes,width=400,height=150")
}

<!-- Javascript Function for XHTML Compliant External Windows -->
function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
}

<!-- Javascript Function for Showing and Hiding DIV's -->
function showhide(id){
	if (document.getElementById){
	obj = document.getElementById(id);
	if (obj.style.display == "none"){
		obj.style.display = "block";
		yesno = "yes";
	} else {
		obj.style.display = "none";
		yesno = "no";
	}
	}
}

<!-- Javascript Function for Showing Hoverover Items -->
function show(id){
	if (document.getElementById){
	obj = document.getElementById(id);
	obj.style.display = "block";
	}
}

<!-- Javascript Function for Hiding Hoverover Items -->
function hide(id){
	if (document.getElementById){
	obj = document.getElementById(id);
	obj.style.display = "none";
	}
}

<!-- Javascript "onload" Window Events -->
window.onload = function()
{
  externalLinks();<!--External Links-->
}
