var overlayFormSubmitter = {
	postFormData: function(thisurl,dataString,div){
            YAHOO.util.Connect.asyncRequest('POST', thisurl, overlayFormSubmitterCallback, dataString);                                    
	},
	successHandler: function (obj){
          	var ajaxResponse = obj.responseText;
          	//alert('ajaxResponse='+ajaxResponse);
          	var xmlResponse = obj.responseXML; 
			var this_overlay = document.getElementById('message');
			this_overlay.innerHTML = ajaxResponse;
			//alert(this_overlay.innerHTML)				
	},
	failureHandler: function (obj){
		//alert("Failure");
	}
};

var overlayFormSubmitterCallback = {
			success: overlayFormSubmitter.successHandler,
			failure: overlayFormSubmitter.failureHandler,
 			scope  : overlayFormSubmitter  
};

