function processOrder(theProduct,thePrice,theQty,theDescription,theSku,theImage,theWeight,theSize)
{
document.items.pulldown_input.value = theProduct+"|"+thePrice+"|"+theQty+"|"+theDescription+"|"+theSku+"|"+theImage+"|"+theWeight+"|"+theSize;
document.items.submit();
}

function processOrderAgain(theProduct,thePrice,theQty,theDescription,theSku,theImage,theWeight,theSize)
{
var setNum = document.items.qtySelect.selectedIndex+1;  
document.items.pulldown_input.value =  theProduct+"|"+thePrice+"|"+setNum+"|"+theDescription+"|"+theSku+"|"+theImage+"|"+theWeight+"|"+theSize; 
}
