

function getBrowser() {
	var browserName=navigator.appName; 
	var browserVer=parseInt(navigator.appVersion); 
	
	if (browserName=="Microsoft Internet Explorer") {
		
		
		if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { 
			//test for MSIE x.x;
			 var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
			 
			 if (ieversion<=6) {
				window.useIe = true;
			 } else {
				 window.useIe = false;
			 }
		} else {
			window.useIe = false;
		}	
	} else {
		window.useIe = false;	
	}
	
	//alert(window.useIe)
}
getBrowser()


function projectRollOver() {
	if(window.useIe) {
		var theMsg = document.getElementById('projectMsgForIe');
	} else {
		var theMsg = document.getElementById('projectMsg');
	}
	

	theMsg.style.visibility = 'visible'
	theMsg.style.display = 'block'
}
function projectRollOut() {
	if(window.useIe) {
		var theMsg = document.getElementById('projectMsgForIe');
	} else {
		var theMsg = document.getElementById('projectMsg');
	}

	theMsg.style.visibility = 'hidden'
	theMsg.style.display = 'none'
}
function projectClick(theUrl) {
	//location.href=theUrl
	window.open(theUrl)
	projectRollOut()
}
