<!--
//
//
//       Content & Presentation
//  Copyright 2004 ,Morning Star Quilts
//        All Rights Reserved
//
//
//  This script retrieves quantity selected and calculates total cost
//
function ShowTotal()
{
// Cedar Bags Current Price
var nNumPrice = "9.95";

// Retrieve Quantity Selected
var nNumQuantity = document.cbags.quantity.value - 0;

// Zero Total
var nNumTotal = "0";

// Calculate total
nNumTotal = nNumPrice * nNumQuantity;	

formattedNum='$'+nNumTotal.toFixed(2);

// Write Total to Form
document.cbags.total.value = formattedNum;
}
//
//
//-->
