﻿
function updateDescription(_id,_select,_preFixText)
{  
  if(!_preFixText) _preFixText = '';
  var o = document.getElementById(_id);    
  if(o)
  {
    if(_select)
    {    
      o.value =_preFixText + _select.options[_select.selectedIndex].text;
    };    
  };
};

function validatePayPal(_formRef)
{  
  _formRef.target = 'paypal';
    
  if(_formRef)
  {
    var val;
    
    if(_formRef.staincolor) val = _formRef.staincolor.value;
    if(_formRef.ckSealant)
    {
      if(_formRef.ckSealant.checked)
      {
        if(val.length > 0) val = val + ' (+Sealant)';                         
      };     
    };     
    if(_formRef.bandcolor)
    {
      if(val.length > 0) val = val + ' / ';            
      val = val + _formRef.bandcolor.value;      
    };
    if(_formRef.fabriccolor)
    {
      if(val.length > 0) val = val + ' / ';            
      val = val + _formRef.fabriccolor.value;      
    };    
    
    _formRef.os0.value = val;   
    
    if(_formRef.selStoolHeight)
    {      
      if(_formRef.os1)
      {
        _formRef.os1.value = _formRef.selTableHeight.options[_formRef.selTableHeight.selectedIndex].text + " / " + _formRef.selStoolHeight.options[_formRef.selStoolHeight.selectedIndex].text;
      };
    };     
    
    return true;
  }
  else
  {
    alert('We are unable to add your color selection to the order.  Please contact us at 928-277-6307 or sale@uniquebarrels.com. Thank You!');
  };   
  
  return false;
};

