function sumbitWithAjax(formID){	$(formID).set('send',{'evalScripts': true});	$(formID).send();}function sumbitWithAjaxNotify(formID,update){	$(update).set('styles',{'display':'block'});	$(update).innerHTML='<div class="loading">Please wait ...</div>';	$(formID).set('send',{'evalScripts': true, onComplete: function(response) {$(update).set('html', response);}});	$(formID).send();}
