
//____FUNCTION FOR NETSCAPE EXPANSION FOR INNER PAGES____

function SetHeight()
{
	if(!document.all)
	{
		if((navigator.userAgent).indexOf("Netscape6/6.01")!=-1 || (navigator.userAgent).indexOf("Netscape6/6.02")!=-1)
		{
			document.getElementById("tdExpand").style.height =window.innerHeight-118;
		}
		else
		{	
			document.getElementById("tdExpand").style.height = window.innerHeight-118;
		}
		
	}
}

//function to show the current year in footer

function showYr(){
	var currDate = new Date();
	var dtYr = currDate.getFullYear();
	document.getElementById("showYear").innerHTML = dtYr
}


//function to change text color on rollover image

function changeTextColor(objId,objColor)
{
	document.getElementById(objId).style.color=objColor
	
}


function openWinAtRisk()
{
	window.open("RiskManagement.htm","AtRisk","width=600,height=450,menubar=no,location=no,resizable=no,scrollbars=no,status=no")
}

function openWinAtRiskSubFldr()
{
	window.open("../RiskManagement.htm","AtRisk","width=600,height=450,menubar=no,location=no,resizable=no,scrollbars=no,status=no")
}
