function openPopWin(theURL,theWidth,theHeight)
{
theWidth = 520
theHeight = 520
	NewWindow = window.open(theURL, "PopWin", "toolbar=no,location=no,status=no,resizable=yes,directories=no,menubar=no,scrollbars=yes,width=" + theWidth +",height=" + theHeight);
	NewWindow.focus();
}
function GotoURL(sURL,bSecure)
{
	var sNewURL
	
	if(bSecure == true)
	{
		sNewURL = "https://" + window.location.hostname + sURL;	
	}
	else
	{
		sNewURL = "http://" + window.location.hostname + sURL;	
	}
	location.href=sNewURL;
	return true;
}
function mOver(objImg, sSrc)
{
	objImg.src = sSrc;						
	objImg.style.cursor = "hand";	
}
function mOut(objImg, sSrc)
{
	objImg.src = sSrc;						
	objImg.style.cursor = "default";	
}
