<!--

function showText(obj) {

  obj.style.backgroundColor = "orange";

  var elem1 = document.getElementById("LINE1");
  var elem2 = document.getElementById("LINE2");
  var elem3 = document.getElementById("LINE3");
  var elem4 = document.getElementById("LINE4");
  var elem5 = document.getElementById("LINE5");
  var elem6 = document.getElementById("LINE6");
  var elem7 = document.getElementById("LINE7");
  var elem8 = document.getElementById("LINE8");
  var elemCaption = document.getElementById("CAPTION");

  var txt1 = "";
  var txt2 = "";
  var txt3 = "";
  var txt4 = "";
  var txt5 = "";
  var txt6 = "";
  var txt7 = "";
  var txt8 = "";

  switch (obj.id) {
    case 'LOGISTICS':
      txt1 = "Logistics Description";
      elemCaption.innerHTML = "Logistics";
      break;
    case 'WWFREIGHT':
      txt1 = "World Wide Freight Description";
      elemCaption.innerHTML = "World Wide Freight";
      break;
    case 'INTCOURIER':
      txt1 = "International Courier Description";
      elemCaption.innerHTML = "International Courier";
      break;
    case 'INTMAIL':
      txt1 = "International Mail / Fulfillment Description";
      elemCaption.innerHTML = "International Mail / Fulfillment";
      break;
    case 'VIDEODUP':
      txt1 = "Video Duplication Description";
      elemCaption.innerHTML = "Video Duplication";
      break;
    case 'ENVFILM':
      txt1 = "Environment Film Description";
      elemCaption.innerHTML = "Environmental Film";
      break;
    case 'DOCCOPY':
      txt1 = "Document Copy Description";
      elemCaption.innerHTML = "Document Copy";
      break;
    case 'MARKPUB':
      txt1 = "Marketing and Publicity Description";
      elemCaption.innerHTML = "Marketing and Publicity";
  };

  elem1.innerHTML = txt1;
  elem2.innerHTML = txt2;
  elem3.innerHTML = txt3;
  elem4.innerHTML = txt4;
  elem5.innerHTML = txt5;
  elem6.innerHTML = txt6;
  elem7.innerHTML = txt7;
  elem8.innerHTML = txt8;

}
// -->

