function do_form(){
	my_fullname = get_value_for_ajax('fullname');
	my_email = get_value_for_ajax('email');
	my_website = get_value_for_ajax('website');
	my_subject = get_value_for_ajax('subject');
	my_note = get_value_for_ajax('note');
	my_pic_code = get_value_for_ajax('pic_code');
	if ( my_fullname =='' || my_email =='' || my_subject =='' || my_note =='' || my_pic_code==''  ){
		$('#ajax_error').show('slow').html('موارد الزامي را تکميل نماييد');
	}else{
		$('#ajax_error').show('slow').html('منتظر بمانيد...');
		do_ajax( 'POST' , 'ajax.php?page=message' , 'fullname='+my_fullname+'&email='+my_email+'&website='+my_website+'&subject='+my_subject+'&note='+my_note+'&pic_code='+my_pic_code , 'ajax_error' , 'body' , 'ok' , 'normal', 'write' )
	}
}
function do_success(){
	$('#ajax_error').removeClass("my_error_error").addClass("my_error_success").html('پيام شما براي مدير سايت ارسال گرديد');
	$('#md_form').slideUp();
}
