/**
*	Do the Ajax Request to the EID Script
*/
function cabagTeamJobs1AjaxRequest(view,uid,statusValue) {
	var cabagTeamJobs1AjaxRequest = new Ajax.Request(
		'index.php?eID=tx_cabagteamjobs_pi1&view='+view+'&uid='+uid+'&statusValue='+statusValue,
		{
			asynchronous: false,
			method: 'get',
			onSuccess: function(response) {
				//alert('OK: ' + response.responseText);
			},
			onFailure: function(response) {
				//alert('NOT OK: ' + response.responseText);
			}
		
		});
}
