// Button Rollover Code
function rollOver(imgID, imgName) {
  document.getElementById(imgID).setAttribute('src', imgName);
}

//////// For all dynamic buttons...  //////////////
function tButtonReplaceWithLoading(objID) {
  document.getElementById("btn_"    + objID).style.display = 'none';
  document.getElementById("btndis_" + objID).style.display = 'block';
}

//////// For dynamic buttons with NO arrow... //////////////
function tButtonHandleClick(objID) {
  obj = document.getElementById(objID);
  obj.className='formButtonWrapperClick';
}
function tButtonHandleOut(objID) {
  obj = document.getElementById(objID);
  obj.className='formButtonWrapper';
}
function tButtonHandleOver(objID) {
  obj = document.getElementById(objID);
  obj.className='formButtonWrapperOver';
}

//////// For dynamic buttons with WITH arrow... //////////////
function tButtonArrowHandleClick(objID) {
  obj = document.getElementById(objID);
  obj.className='formButtonWrapperArrowClick';
}
function tButtonArrowHandleOut(objID) {
  obj = document.getElementById(objID);
  obj.className='formButtonWrapperArrow';
}
function tButtonArrowHandleOver(objID) {
  obj = document.getElementById(objID);
  obj.className='formButtonWrapperArrowOver';
}
