﻿<!--
function getE(id)
{
	return document.getElementById(id);
}
function goURL(theURL) 
{
	var sPath = window.location.pathname;
	var sHOST = window.location.hostname;
	var checkURL = sHOST.substring(0,3).toLowerCase();
	if(checkURL != "www" && checkURL != "loc" && checkURL != "pro" && checkURL != "dem" && checkURL.indexOf("-") < 0)
		sHOST = "www." + sHOST;
	var nLast = sPath.lastIndexOf("/");
	window.location = "http://" + sHOST + sPath.substring(0,nLast+1)+ theURL; 
} 
function goPage(u) 
{
	window.location = u;
}
function popUp(url, name)
{
	var nh = 500;
	var nw = 610;
	var nt = 40;
	var nl = 100;
	var options = "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,height="+nh+",width="+nw+",top="+nt+",left="+nl;
	window.open(url, name, options);
}

//-->