<!--
  if (document.images) 
  {  
  image1on = new Image();
  image1on.src = "images/home_on.gif";  
  image1off = new Image();
  image1off.src = "images/home_off.gif";
  image2on = new Image();
  image2on.src = "images/email_on.gif";  
  image2off = new Image();
  image2off.src = "images/email_off.gif";
  image3on = new Image();
  image3on.src = "images/seek_on.gif";  
  image3off = new Image();
  image3off.src = "images/seek_off.gif";
  image4on = new Image();
  image4on.src = "images/tronic_on.gif";  
  image4off = new Image();
  image4off.src = "images/tronic_off.gif";
  }
  function turnOn(imageName) 
  {
  if (document.images) 
    {
    document[imageName].src = eval(imageName + "on.src");  
    }
  }
  function turnOff(imageName) 
  {  
  if (document.images) 
    {
    document[imageName].src = eval(imageName + "off.src");  
    }
  }
function openWin(url, name, w, h)

{   popupWin = window.open(url, name, "scrollbars,width=" + w + ",height=" + h);

    popupWin.focus();

}

function openWinLoc(url, name, w, h, x, y)

{   popupWin1 = window.open(url, name, "scrollbars,width=" + w + ",height=" + h + ",screenX=" + x + ",screenY=" + y + ",top=" + y + ",left=" + x);

    popupWin1.focus();

}
// -->
