function form_submit (form, url, top){  var name = form.filled_in_form.value;  jQuery('#form_status_' + name).show ();  jQuery.post (url, jQuery(form).serialize (), function (response)	     {         jQuery('#form_status_' + name).hide ();         if(response=='') {response = '<p class="thankyoumsg">Thank you for standing with Congressman Weiner in support of a strong public health care option.</p>';}         jQuery('#filled_in_wrap_' + name).html(response);//         if (top)//		          Element.scrollTo ('filled_in_wrap_' + name);	     });}