/*
function browsercheck(){
var browserName=navigator.appName;
var browserVer=navigator.appVersion;
	if ((browserName=="Netscape" && browserVer.indexOf("5.0") > -1) || (browserName=="Microsoft Internet Explorer" && browserVer.indexOf("7.0") > -1)){
		// Check for updated IE/FF that use updated CSS techniques
	}
	else if (browserName=="Netscape" && browserVer.indexOf("4.0") > -1 ){
		var update_ff = confirm ("Would you like to update Mozilla/Firefox? Yes to Update, Cancel to Continue");
		if (update_ff)
		window.location="http://www.mozilla.com/en-US/firefox/";
		else
		window.stop();
	}
	else if (browserName=="Microsoft Internet Explorer" && browserVer.indexOf("6.0") > -1) {
		 var update_ie = confirm ("You need to update Internet Explorer to view this site. Yes to Update, Cancel to Exit");
		 if (update_ie)
		 window.location="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx";
		 else
		 window.stop();
	}
	else {
	  // Other web browser Safari, Opera, etc... results may vary
	}
}
*/

