/**
 * @author Ryan
 */
function detectBrowser()
{
	var browser = navigator.appName;
	var b_version = navigator.appVersion;
	var version = parseFloat(b_version);
	
	if (browser == "Microsoft Internet Explorer")
	  {
	  	document.write("<div id='browserWarning'>Internet Explorer is currently out-dated.  We recommend other browsers such as <a href='www.firefox.com'>FireFox</a>, <a href='http://www.google.com/chrome'>Google Chrome</a>, <a href='http://www.apple.com/safari/'>Safari</a>!</div>    ");
	  }
	else
	  {
	  	//
	  }
}

detectBrowser();