browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion);
IE=false;
if (browser_name == "Microsoft Internet Explorer" && browser_version >= 4.0) { IE = true; }

function setPointer(theCol, theAction)
{

	if (theAction=='over'){
		theCol.style.backgroundColor='003163';
		theCol.style.color='FF9C07';
	}
	if (theAction=='out2') {
		theCol.style.backgroundColor='B3C4DE';
		theCol.style.color='003163';
	}
	if (theAction=='out') {
		theCol.style.backgroundColor='C7D6EC';
		theCol.style.color='003163';
	}
  return true;
} 
