function do_form(){
	my_code = get_value_for_ajax('code');
	if ( my_code==''  ){
		$('#ajax_error').show('slow').html('موارد الزامي را تکميل نماييد');
	}else{
		$('#ajax_error').show('slow').html('منتظر بمانيد...');
		do_ajax( 'POST' , 'ajax.php?page=check_order_hosting' , 'code='+my_code , 'ajax_error' , 'body' , 'ok' , 'normal', 'write' )
	}
}
function do_success( code ){
	$('#ajax_error').removeClass("my_error_error").addClass("my_error_success");
	$('#md_form').slideUp();
}

