function browserWarn(){
	if ( $.browser.msie ) {
		if ( $.browser.versionX < 8 ) {
			document.write('<link rel="stylesheet" type="text/css" media="all" href="/wp-content/themes/whitley/functions/js/ie6block.css" />');
			document.write('<div id="blockback"><div id="ie6warning"><h1>NOTICE</h1><p>It appears that you\'re using An older version of Internet Explorer. Due to security and standards compliance issues this browser is no longer suported. In order to view this and other websites the way they were inteneded we reccommend you upgrade to a modern browser.</p><p>For your convenience we have provided links to the top 4 major browsers.</p><a href="http://www.getfirefox.com"><img src="http://themereactor.com/dumedia/wp-content/themes/prestige/images/firefox_small.png" /><br />Firefox</a><a href="http://www.opera.com/"><img src="http://themereactor.com/dumedia/wp-content/themes/prestige/images/new_opera_logo_small.png" /><br />Opera</a><a href="http://www.google.com/chrome/"><img src="http://themereactor.com/dumedia/wp-content/themes/prestige/images/logo_google_chrome_small.png" /><br />Chrome</a><a href="http://windows.microsoft.com/en-us/internet-explorer/products/ie/home"><img src="http://themereactor.com/dumedia/wp-content/themes/prestige/images/ie_logo_small.png" /><br />Internet Explorer</a></div></div>');
			if( typeof( window.innerWidth ) == 'number' ) {
				//Non-IE
				winW = window.innerWidth;
				winH = window.innerHeight;
			} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
				//IE 6+ in 'standards compliant mode'
				winW = document.documentElement.clientWidth;
				winH = document.documentElement.clientHeight;
		  	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
				//IE 4 compatible
				winW = document.body.clientWidth;
				winH = document.body.clientHeight;
		  	}
			document.getElementById("blockback").style.width = winW + "px";
			document.getElementById("blockback").style.height = winH + "px";
			document.getElementById("ie6warning").style.top = (winH * 0.5 ) - ( 300 / 2) + "px";
			document.getElementById("ie6warning").style.left = (winW * 0.5 ) - ( 500 / 2) + "px";
		}
	}
}
