function submitJoinForm(form,url,sessionParam)
{
 var req = url+'/ajaxapi.php?cityopoly_quick_form_process=1'+Campus_formToURL(form)+'&'+sessionParam;
 dhtmlCampusAveLoadScript(req);
}


function quickFormCallback(status,message,errorControl)
{
   if(status)
   {
             
			var html = '<div style="height:70px;"></div><BR>\
			            <table width="540" height="115" style="margin-left:27px" align="center" bgColor="#E4FBEA"><tr><td width="100"><img src="/images/sign_smile_big.gif"></td>\
			            <td>\
						 <b style="font-size:14px">Success! One of our customer representatives will contact you within 24 hours</b><BR><BR>\
						 <BR>\
						 <BR>\
						 <a href="/">Back to home page &gt;</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\
						</td>\
						</tr>\
						</table>';
			showCustomModalDialog(600,300,html,true);
			
   }
   else
   {
    $('proposal-error').innerHTML = message;
	CMPS_blink($('proposal-error'));
   }
}
