// JavaScript Document
// pretty simple function, we pass an url, some data 
// and the target where we want the action to happen

function request_action(jurl,jdata,jtarget)	
{
	$(jtarget).html('Processing request...');
		
	$.ajax(
	{
	   type: "GET",
	   url: jurl,
	   data: jdata,
	   success: function(data)
	   {
	     $(jtarget).html(data);
	   }
	});
};
