// JavaScript Document

function openDialog(file,dialogTitle,dialogWidth,dialogHeight)
{
	switch(file)
	{
		case "cgu":
		$.get("template/default/cgu.html", function(data){$("#dialog-message" ).html(data)});
		break;
		
		case "contact":
		$.get("ajax/contact.php", function(data){$("#dialog-message" ).html(data)});
		break;
	}
	
	$( "#dialog:ui-dialog" ).dialog( "destroy" );
	
		$( "#dialog-message" ).dialog({
			modal: true,
			title: dialogTitle,
			width: dialogWidth,
			height: dialogHeight,
			buttons: {
				Fermer: function() {
					$( this ).dialog( "close" );
				}
			}
		});
	
}
