function close_lightwindow(){	jQuery('#lightbox').html("");	jQuery('#overlay').hide();	jQuery('#lightbox').hide();}jQuery("#contact_form").submit(function() {	s_form();});function s_form(){	jQuery('#lightbox').html("<center><B>Processing...</b></center>");	jQuery('#overlay').show();      				jQuery('#lightbox').show(); 	jQuery.post("/request", jQuery("#contact_form").serialize(),function(data){		jQuery('#lightbox').html(data);		Recaptcha.reload();		update_form();	});}