function addRushFee()
{document.forms[0].opt3.value=1;}
function subtractRushFee()
{document.forms[0].opt3.value=0;}
function handleShippingChange(o,sSKU)
{var oSelect=document.getElementById('custtext1');if(oSelect.value.indexOf('Rush')!=-1)
{if(!flagRushShipping)
{addRushFee();flagRushShipping=true;alert('Rush processing adds $50.00');}}
else
{if(flagRushShipping)
{subtractRushFee();flagRushShipping=false;}}
switch(sSKU)
{case'GOBOCUSTSTEEL':CheckOptionsGOBOCUSTSTEEL(document.forms[0]);break;case'GOBOCUSTGLASS':CheckOptionsGOBOCUSTGLASS(document.forms[0]);break;case'GOBOSELFCUST':CheckOptionsGOBOSELFCUST(document.forms[0]);break;}}
function handleCopiesChange()
{var oSelect=document.getElementById('custtext1');if(oSelect.value.indexOf('Rush')!=-1)
{addRushFee();}}
