function badBrowser(){
	if($.browser.msie && parseInt($.browser.version) <= 6){ return true;}
	
	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'><img src=\"images/badBrowser/warning.gif\" style=\"margin-bottom:10px;\" alt=\"\" /><br /><h1>ATTENTION!</h1><br />Your web browser is out of date and does not support many features used on this website.<br />The site may not look as it should and you may experience difficulties in using it correctly.<br />We want to help you update your browser. It's completely free and only takes a minute.<br /><br /><b>Click one of the links below to upgrade your browser:</b><br /><a href='http://www.google.co.uk/chrome'><img src=\"images/badBrowser/ch.gif\" style=\"margin:20px;\" alt=\"Google Chrome\" /></a><a href='http://getfirefox.com'><img src=\"images/badBrowser/ff.gif\" style=\"margin:20px;\" alt=\"Mozilla Firefox\" /></a><a href='http://www.apple.com/safari/'><img src=\"images/badBrowser/sf.gif\" style=\"margin:20px;\" alt=\"Apple Safari\" /></a><a href='http://www.microsoft.com/windows/downloads/ie/getitnow.mspx'><img src=\"images/badBrowser/ie.gif\" style=\"margin:20px;\" alt=\"Microsoft Internet Explorer\" /></a><a href='http://www.opera.com/download/'><img src=\"images/badBrowser/op.gif\" style=\"margin:20px;\" alt=\"Opera\" /></a><br /><a href='#' style=\"font-size:11px;font-weight:normal;background:none;color:#666;text-decoration:none;\" style=\"font-size:11px;color:#666;text-decoration:none;\" onmouseover=\"this.style.fontWeight = 'normal'\" onmouseout=\"this.style.fontWeight = 'normal'\" id='warningClose'>Continue without upgrading. (not recommended)</a></div> ")
			.css({
				'background-color': '#fffcc4',
				'width': '100%',
				'color': '#333',
				'font-size': '12px',
				'line-height': '20px',
				'border-bottom': '2px solid #666',
				'text-align': 'center',
				'padding':'15px 0px 15px 0px'
			})
			.prependTo("body");
		
		$('#warningClose').click(function(){
			setBadBrowser('browserWarning','seen');
			$('#browserWarning').slideUp('slow');
			return false;
		});
	});	
}

