function ss_changeImage(objID, imgName)
{
   objID.src = imgName;
}
 
function updatePage(obj)
{
   if (obj.value == 'CREDIT')
   {
     document.getElementById('CreditCard').style.display = "block";
     document.getElementById('Invoice').style.display = "none";
   }
   else
   {
     document.getElementById('CreditCard').style.display = "none";
     document.getElementById('Invoice').style.display = "block";
   }
}
 
function updatePayment()
{
   var objElement = document.forms['LANSA'].elements['IUCPMTTYP'];
   for (var i = 0; i < objElement.length; i++) 
   {
      if(objElement[i].value == objValue) 
      {
        objElement[i].checked = true;
        break;
      }
   }
}
 
function addLoadEvent(func) 
{
  var oldonload = window.onload;
  if (typeof window.onload != 'function') 
 {
    window.onload = func;
  } 
  else 
  {
    window.onload = function() 
    {
      oldonload();
      func();
    }
  }
}
 
function disableBtn(objName)
{
  if (objName == '')
  { 
     document.getElementById('payment_status').style.display = "block";
     document.getElementById('payment_options').style.display = "none";
   }
   else
   {
     document.getElementById('payment_status_inv').style.display = "block";
     document.getElementById('payment_options_inv').style.display = "none";   
   }
}
function trapError()
{
   return true;
}

function disablemenu()
{
   return false;
}

//document.oncontextmenu=disablemenu;
window.onerror=trapError;
