<!--

function fmtPrice(value) {
if (value < 0) { result= "  N/A"; return result; }
result="£"+Math.floor(value)+".";
var cents=100*(value-Math.floor(value))+0.5;
result += Math.floor(cents/10);
result += Math.floor(cents%10);
return result;
}

function getVariables(form){
participants = form.meetpart.value;
hours = from.meethours.value;
}

function confcost(form){
form.Awcost.value = fmtPrice(form.Audioweb.value * participants * hours);
if (form.Vcsaving.value < 0) { form.VideoSave.value = "N/A"; }
if (form.Awsaving.value < 0) { form.WebSave.value = "N/A"; }
}

//-->
