/* JOKERz JQuery Lib Fn */
/* ©2008 JOKERz */
/* jokerz.web.id */
/* No Licenced Needed, But keep my name at the top of this scripts*/
	function toDo(url,PID,divID){
		$.ajax({
		   type: "GET",
		   url: url,
		   data: 'reg='+PID+'',
		   success: function(data){
		   	  $(divID).html(data);
		   }
		 });
	 }
	 function detailPenerimaan(url,divID){
		$.ajax({
		   type: "GET",
		   url: url,
		   success: function(data){
		   	  $(divID).html(data);
		   }
		 });
	 }