// JavaScript file Copyright 2003, Peter Glaser - all rights reserved
// Do not copy without prior consent
// functions below for updating "Site last modified" on home page
// detects browser version and formats date accordingly


function browserChk()
	{
		var browser; 
		if (document.all)
		{
			browser = "IE";
			return browser;
		}
		else if (document.layers)
		{
			browser = "NAV";
			return browser;
		}

	}


function toggle(whichOne) {
	
	if (document.getElementById(whichOne).style.backgroundColor == 'white'){
		document.getElementById(whichOne).style.backgroundColor = '#a8a8a8';
		document.getElementById(whichOne).style.border = '1px solid white';
		// document.getElementById(whichOne).firstChild.style.color = '';
	}else{
		document.getElementById(whichOne).style.backgroundColor = 'white';
		document.getElementById(whichOne).style.border = '1px solid #ffd226';
		// document.getElementById(whichOne).firstChild.style.color = '#ffa232';
	}
}


function policy()
	{
		pol = window.open("privacy.html","pol", "width=480,height=320, menubar=no, status=no, ");
		pol.moveTo(0,30);
	}

function showPolicy(theDivIn){
//alert(document.getElementById(theDivIn).style.display);
if (document.getElementById(theDivIn).style.display == 'none'){
	document.getElementById(theDivIn).style.display = '';
}else{
	document.getElementById(theDivIn).style.display = 'none';
} 
}