function do_form(){
	my_fullname = get_value_for_ajax('fullname');
	my_email = get_value_for_ajax('email');
	my_price = get_value_for_ajax('price');
	my_pic_code = get_value_for_ajax('pic_code');
	my_for_code = get_value_for_ajax('for_code');
	if ( my_fullname =='' || my_email =='' || my_price =='' || my_pic_code==''  ){
		$('#ajax_error').show('slow').html('موارد الزامي را تکميل نماييد');
	}else{
		$('#ajax_error').show('slow').html('منتظر بمانيد...');
		do_ajax( 'POST' , 'ajax.php?page=samanpayment_add' , 'for_code='+my_for_code+'&fullname='+my_fullname+'&email='+my_email+'&price='+my_price+'&pic_code='+my_pic_code , 'ajax_error' , 'body' , 'ok' , 'normal', 'write' )
	}
}
function do_success(  ){
	$('#ajax_error').removeClass("my_error_error").addClass("my_error_success");
	$('#md_form').slideUp();
}

