<!--
function calcQuote() {
	var A = document.quote.a_price.value * 1;
	var B = document.quote.b_price.value * 1;

	var C = document.quote.a_pins.value * 1;
	var D = document.quote.a_pins.value * 1;

	var L = document.quote.length.value * 1;
	var Q = document.quote.quantity.value * 1;

	var CRT = document.quote.catagory.value;
	var POA = document.quote.a_number.value;
	var POB = document.quote.b_number.value;
	var DOA = document.quote.a_name.value;
	var DOB = document.quote.b_name.value;
	var DOC = "";

	if (L > 0) {
		var DOC = "Standard Cable";
	}
	if (C < D) {
		var AP = C * 0.2;			
		var BP = C;
	} else {
		var AP = D * 0.2;
		var BP = D;
	}
	var CP = AP * L;
	var DP = CP + BP;
	var SUB = A + B + DP;
	var TOT = SUB * Q;
	document.quote.priceper.value = SUB;
	document.quote.extension.value = TOT;
	document.quote.cartpart.value = (CRT + "-" + POA + POB + "-" + L);
        document.quote.description.value = (DOA + ", " + DOC + ", " + DOB);
}
//-->
