/* 
Web-Innova misc scripts
Copyright 2006 - Web-Innova, LLC
misc.js
8/2006
*/

// Calculate project cost
function calculateProjectCost(frm,fld_qty,fld_rate,destination)
{
	var qty = window.document.forms[frm].elements[fld_qty];
	//alert(qty.value);
	var rate = window.document.forms[frm].elements[fld_rate];
	//var rate = window.document.elements["rate"];
	//alert(rate.value);
	var cost;
	
	cost = qty.value * rate.value;
	//alert(cost);
	
	document.getElementById("cost").innerHTML = "$" + cost.toFixed(2);

}


