// Charge une page dans le div #dynamicWindow
function loadWindow(url,type)
{
	
	$('#main').html('');
	
	if(type==0) { // Normal
		
		$('#main').width(540);
		$('#side_right').show();
		
	}else if(type==1){ // Écran large
	
		$('#main').width(770);
		$('#side_right').hide();
		
	}else{
	
		location.href = url;
		
	}
	
	
	if(url)
	{
		html = $.ajax({ url: url, async: false }).responseText;
		$('#main').html(html);				
	}
}
