function ajaxRequest (panel,theparams)
{
	$(panel).innerHTML = "<p style='text-align:center;margin:0px;'><img src='images/blueArrowLoader.gif'><br>Saving Information...</p>";
	var myAjax = new Ajax.Request(
		'include/ajaxRequests.php', 
		{
			method: 'get', 
			parameters: theparams, 
			evalScripts: true,
			onComplete: function(response) 
				{
					$(panel).innerHTML = response.responseText;
				}
		}
	);
}              

