<!--

// (C) 2003 interActive Design
// http://home.earthlink.net/~iadweb
// Use it, but leave this header intact

offOV = 'Truck Lease Services, Inc.'

function On(show,OV){
   if (document.all||document.getElementById){
      show.className='menubox'
      if (document.getElementById) {document.getElementById("OV").innerHTML = OV}
         else {OV.innerHTML = OV}
   }
}

function Off(show){
   if (document.all||document.getElementById){
      show.className='menubox'
      if (document.getElementById) {document.getElementById("OV").innerHTML = offOV}
         else {OV.innerHTML = offOV}
   }
}

//-->