function badBrowser(){
	if($.browser.msie && parseInt($.browser.version) <= 7){ return true;}
	// if($.browser.mozilla){ return true;} //Remove this line so you will not get the warning in Firefox.
	return false;
}

function getBadBrowser(c_name)
{
	if (document.cookie.length>0)
	{
	c_start=document.cookie.indexOf(c_name + "=");
	if (c_start!=-1)
		{ 
		c_start=c_start + c_name.length+1; 
		c_end=document.cookie.indexOf(";",c_start);
		if (c_end==-1) c_end=document.cookie.length;
		return unescape(document.cookie.substring(c_start,c_end));
		} 
	}
	return "";
}	

function setBadBrowser(c_name,value,expiredays)
{
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+expiredays);
	document.cookie=c_name+ "=" +escape(value) + ((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}

if(badBrowser() && getBadBrowser('browserWarning') != 'seen' ){
	$(function(){
		$("<div id='browserWarning'>Whoa there! The web browser you are using is old and shows websites incorrectly. Please switch to <a href='http://getfirefox.com'>FireFox</a>, <a href='http://www.google.com/chrome/'>Chrome</a>, <a href='http://www.apple.com/safari/'>Safari</a> or <a href='http://www.microsoft.com/windows/downloads/ie/getitnow.mspx'>Internet Explorer 8 (or 9)</a>. Thanks!&nbsp;&nbsp;&nbsp;[<a href='#' class='noArrow' id='warningClose'>close</a>] </div> ")
			.css({
				'backgroundColor':	'#fcfdde',
				'font-family':		'Arial',
				'font-size':		'1.2em',
				'width':		'100%',
				'border-top':		'solid 1px #000',
				'border-bottom':	'solid 1px #000',
				'text-align':		'center',
				'padding':		'10px 0px 10px 0px'
			})
			.prependTo("body");
		
		$('#warningClose').click(function(){
			setBadBrowser('browserWarning','seen');
			$('#browserWarning').slideUp('slow');
			return false;
		});
	});	
}

