// JavaScript Document

function browserDetect(){
	var browser=navigator.appName;
	var b_version=navigator.appVersion;
	var version=parseFloat(b_version);
	
	if (browser == "Microsoft Internet Explorer"){
		alert("It appears that you are using Microsoft Internet Explorer to view this page.  Unfortunately, due to recent changes in the user interface of the portfolio, this website is currently not compatible with Internet Explorer. I am currently working on a fix for this problem. In the mean time, please use Mozilla Firefox, Apple Safari, Google Chrome or the Opera Browser to view this page. I apologize for the inconvenience.")
	}
}