function debugJS(variable){
	//alert(HTML_AJAX_Util.varDump(variable));
	variable = HTML_AJAX_Util.varDump(variable);
	document.write('<div id="debugJS" style="padding-top:30px;padding-right:3px;padding-left:3px;padding-bottom:3px;position:absolute;top:0;left:0;width:300px;height:400px;background:url(js/debug/fond.gif) top left no-repeat;border:0"><div style="background-color:#FFFFFF;overflow:auto;height:270px;">'+variable.toString().replace(/\n/g,'<br>')+'</div></div>');
	new Draggable('debugJS',{scroll:window});
}