﻿
function PF_getdata(requestURL,objname,pars) {    
	 jQuery.ajax({
		           type: "post",		        
			    url: requestURL,		
			    dataType: "html",
			    data: pars,
			    error: function(resp){
			    	//	alert('Error: url : ' + requestURL+'?'+pars+'\n'+resp.responseText); 	   
			    },
			     beforeSend:function(){	
				     //jQuery("#"+objname).html('Loading content, please wait..');
			    },			
			    success: function(resp){
					$("#"+objname).html(resp);
			     }
	 })					      
}
