var isMSIE = /*@cc_on!@*/false;

$(document).ready(function(){
	var reg1 = new RegExp(/IE6/g);
	var str = $('body').attr('class');
	if (newClient && reg1.test(str) == true)
	{	
		$("#dialog").dialog({
			bgiframe: false,
			resizable: false,
			height: 210,
			modal: true,
			overlay: {
				backgroundColor: '#000',
				opacity: 0.5
			},
			buttons: {
				'Mettre à jour': function() {
					window.open("http://www.microsoft.com/france/windows/internet-explorer/");
					$(this).dialog('close');
				},
				'Continuer': function() {
					$(this).dialog('close');
				}
			}
		});
	}
	else
	{
		$("#dialog").hide();	
	}
});
