//Simple Show Layer Function
function showLayer(theLayer)
{
	document.getElementById(theLayer).style.display = "block"
}

//Simple Show Layer Function
function hideLayer(theLayer)
{
	document.getElementById(theLayer).style.display = "none"
}

//Simple Show/Hide Layer Function
function showHideLayer(theShowLayer, theHideLayer)
{
	document.getElementById(theShowLayer).style.display = "block"
	document.getElementById(theHideLayer).style.display = "none"
}

function changeIndOn(i) {

document.getElementById(i).src = "images/left_nav_ind_on.gif";

}
function changeIndOff(i) {

document.getElementById(i).src = "images/left_nav_ind_off.gif";

}
function changeIndOff1(i) {

document.getElementById(i).src = "images/top_nav_ind_off.gif";

}
function changeColorOn(i) {

document.getElementById(i).style.color = "#026333";

}
function changeColorOff(i) {

document.getElementById(i).style.color = "#666666";

}
function dislcPopup()
	{
		window.open('disclaimer.asp',3,'width=400,height=120,toolbar=0, menubar=0,resizeable=0,scrollbars=1');
	}
	
	function privpPopup()
	{
		window.open('privacy_policy.asp',3,'width=450,height=475,toolbar=0, menubar=0,resizeable=0,scrollbars=1');
	}