<!-- quote list
function theFly()		{
var hForm = document.hiddenForm
hForm.product1.value = document.quote.product.options[document.quote.product.selectedIndex].text;
hForm.size1.value = document.quote.size.options[document.quote.size.selectedIndex].text;
hForm.detail1.value = document.quote.detail.options[document.quote.detail.selectedIndex].text;
hForm.quantity1.value = document.quote.quantity.value;
}
function tellFly()		{
var hForm = document.hiddenForm
var orderForm = new Array (hForm.product1.value,hForm.size1.value,hForm.detail1.value,hForm.quantity1.value);
flyArray(orderForm);
}
function flyArray(orderForm)		{
var hArray = hiddenArray
hArray[hArray.length] = orderForm;
for (i=0;i<hArray.length;i++) {

}
}
// so ends the fly -->