function badBrowser(){
	if($.browser.msie && parseInt($.browser.version) < 8){ 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'>ATTENTION: l'affichage de cette page est incomplet ou alt&eacute;r&eacute;. Cliquez ici pour <a href='http://www.microsoft.com/windows/internet-explorer/worldwide-sites.aspx' style='font-family:Trebuchet MS,Geneva,Arial,Helvetica,SunSans-Regular,sans-serif; font-size: 16px; color:#971299' target='_blank'>installer Internet Explorer 8</a>. Merci!&nbsp;&nbsp;&nbsp;[<a href='#' style='font-family:Trebuchet MS,Geneva,Arial,Helvetica,SunSans-Regular,sans-serif; font-size: 16px; color:#971299' id='warningClose'>fermer</a>] </div> ")
			.css({
				'width': '100%',
				'background-color': '#EFE6EF',
				'color': '#971299',
				'font-family': '"Trebuchet MS",Geneva,Arial,Helvetica,SunSans-Regular,sans-serif bold',
				'font-size': '16px',
				'font-weight': 'bold',
				'border-top': 'solid 1px #971299',
				'border-bottom': 'solid 1px #971299',
				'text-align': 'center',
				'padding': '5px 0px 5px 0px'
			})
			.prependTo("body");
		
		$('#warningClose').click(function(){
			setBadBrowser('browserWarning','seen');
			$('#browserWarning').slideUp('slow');
			return false;
		});
	});	
}

/*
$(document).ready(function () {
					jAlert('<h2 style="margin:0; padding:0">En raison de problèmes techniques, les horaires de cours affichés ici sont incorrects.</h2><br><strong>Veuillez SVP prendre note que, durant la semaine des vacances de patates (du lundi 19 au vendredi 23 octobre inclus), seuls les cours suivants seront donnés à Soluna Pâquis:</strong><br><br>De lundi à jeudi: <strong>de 12:30 à 13:30</strong> et de <strong>19:00 à 20:30</strong><br>Le vendredi: <strong>de 12:30 à 13:30</strong> et <strong>de 18:30 à 20:00</strong><br><br>Les horaires normaux reprendront dès le samedi 24 octobre 2009.<br><br>Merci de votre compréhension.','Attention!');
			}); 	
*/
