	function ajaxCall(sessionID,ebiEventID,agentName,pdsNumber,desturl, language, refURL, address, city, state, zip, locationid){
	var url = 'ebievent.html';
			ajaxRequest = new Ajax.Request(
			url, 
			{
				method: 'POST', 
				parameters: {EVENTID: ebiEventID, AGENTNAME:agentName, PDSNUMBER:pdsNumber, DEST:desturl, SESSIONID:sessionID, LANGUAGE:language, HTTPREF:refURL, ADDRESS:address, CITY:city, STATE:state, ZIP:zip, LOCATIONID:locationid} ,
			    asynchronous: true,
				onSuccess: showResponse ,
				onFailure:showErrorResponse
			});
	return false;
	}
	function showResponse(HttpRequest){
			}
		
	function showErrorResponse(){	
			}
	
