/**
 * @author fred
 */

 function getHtml(url,div) {
 $("#"+div).fadeTo("slow", 0.01);

 $("#"+div+"Out").addClass('ajaxLoader');

 $.ajax({
	 url: url,
	 cache: true,
	 success: function(html){
		 $("#"+div+"Out").removeClass('ajaxLoader');
		 $("#"+div).html(html);
		$("#"+div).fadeTo("slow", 1.0);
		
		 }
 });


}
 
 
 
 function submitForm(id) {
	  	//alert(id);
		document.forms[id].submit();
		
	  }
