function openMap(mapsvr)
{
var MapWin
MapWin=window.open
((mapsvr ? mapsvr : 'ims'), 'ims', 'menubar=yes,toolbar=yes,alwaysLowered=yes,status=yes,width=' + Math.min(0.99 * screen.availWidth, 1000) + ',height=' + Math.min(0.93 * screen.availHeight, 725) + ',resizable=yes')
}
   
function openWeb(webpage)
{
var WebWin
WebWin=window.open
(webpage, 'Web_Window', 'width=550,height=280,resizable=yes,toolbar=no,menubar=yes,location=no,status=no,scrollbars=yes')
WebWin.focus();
}

function openWin(URL)
{
	NewWin=window.open(URL, 'New_Window', 'width=475,height=300,resizable=yes,toolbar=no,menubar=yes,location=no,status=yes,scrollbars=yes');
	NewWin.focus();
}

function HLOn(currentLink) {
	currentLink.style.color = "#B5A59C";
	currentLink.style.textDecoration = "underline";
	currentLink.style.backgroundColor = "#FFFFFF";
}

function HLOff(currentLink) {
	currentLink.style.color = "#0000FF";
	currentLink.style.textDecoration = "none";
	currentLink.style.backgroundColor = "transparent";
}
