function toggleAddVoucher(){

	var theDiv = $("#divAddVoucher");
	
	theDiv.slideToggle();
	t = setTimeout('$("#fmCode").focus()',500);
	
}

function addVoucher(){
	
	var theForm = $("#frmAddVoucher")
	var theVerify = $("#spnVoucherVerify");
	var theError = $("#spnVoucherError");
	var theCode = $("#fmCode");
	
	theError.hide();
	theVerify.show();
	
	ajax = create_ajax();
	
	ajax.onreadystatechange=function(){
		if (ajax.readyState==4 && ajax.status==200){
			response = ajax.responseText;
			if (response != "OK"){
				theError.html(response);
				theVerify.hide();
				theError.show();
				theCode.focus();
			}
			else{
				document.location = '/procs/add_voucher_proc.php?fmCode='+theCode.val();
			}
		}
	}
	
	run_ajax(ajax,"POST","/_ajax/verifyVoucher.php","fmCode="+theCode.val());
	
}

function removeVoucher(bv_id){
	
	document.location = '/procs/remove_voucher_proc.php?id='+bv_id;
	
}
