////////////////////////////////////////////////
//               POPUP AJAX
///////////////////////////////////////////////
function dialogBox(url,width,btclose,title){
	window.location.href = "#";
	$('#dialogbox').css('width', width + 'px');
	$('#dialogbox_title').html(title);
	$('#dialogbox_content').html('<img height="11" src="/images/interface/ajax-loader.gif" width="43" alt="Chargement...">');
	
	if(btclose == "off")
		$("#dialogbox_btclose").hide();
	else
		$("#dialogbox_btclose").show();
	
//	var windowHeight = document.body.scrollHeight;
	var windowHeight	=	$('#centre').height();
	var windowWidth = document.body.scrollWidth;
	
	document.getElementById('dialogbox').style.marginLeft = "-" + (width/2) + "px";
//	$("#dialogbox").css({"top": document.body.scrollTop + 30});
	$("#dialogbox").css({"top": 30});
    
//	$("#global").css({"height": windowHeight,"width": windowWidth});
	$("#global").css({"height": windowHeight,"left":0});
	$("#global").fadeIn(400);
	setTimeout("$('#dialogbox').slideDown(400)",500);
	
	$("#global").click(function(){dialogbox_off(); });
	
	/*
	$.get(url,{nocache : Math.random()},
    function success(data)
    { 
    	$('#dialogbox_content').html(data);
    });	
    */
    
    var myurl = url;
    
	$.ajax({
		type: "GET",
		url : myurl,
		cache: false,
		success: function(data) 
		{
			$('#dialogbox_content').html(data);
		}
	});
}

//var timeout;

function dialogbox_off(){
//	clearTimeout(timeout);
	$('#dialogbox').fadeOut(400);
//	$("#global").css("display","none");
	setTimeout('$("#global").fadeOut(400)',400);
//$('#global').hide();
}

function dialogbox_wait(){
	timeout = setTimeout("dialogbox_off()",5000); 
}

