
<!-- Begin
function getFabricCost(ID,FH,FW,FP)
{
	var answer = (FH * FW) * FP;
	var FormName = "frm" + ID;
	var txtTotal = "txtTotal" + ID;
	var txtPrice = "txtPrice" + ID;
	var txtSize = "txtSize" + ID;
	document.getElementById(txtPrice).innerHTML = answer.toFixed(2);
	document.getElementById(txtTotal).value = answer.toFixed(2);
	document.getElementById(txtSize).value = FW + "w by " + FH + "h";	
	return answer;
}
//  End -->
