<!--

function submitCart(strFormAction) {

    document.frmViewCart.action = strFormAction;
    
    if( strFormAction.indexOf('cartUpdateItems.php') > -1 ) {
    
        for( i = 0; i < document.forms[2].elements.length; i++ ) {
        
            var el = document.forms[2].elements[i];
           
            if( el.type == 'checkbox'  ) {
           
                if( el.checked == true ) {
                
                    tmp = el.name.substring(10, el.name.length);
                    
                    eval("document.forms[2].elements['quantity_" + tmp + "'].value = 0;");
                    
                }
        
            }
        
        }

    
    }
    
}


function GoToStep( intStep ) {

    var obj = document.forms[2];
    
    obj.elements['step'].value = intStep;
    obj.submit();

}



-->


