
function LibAjaxRequest(url,data,div) {   

	 var aj = new Ajax.Request(     
		 url, {      
		 method:'get',     
		 parameters: data,      
		 onComplete: function getResponse(oReq) {    
					$(div).innerHTML = oReq.responseText;   
 				}
		}     
	 );   
 }
