/*
 * AUTHOR  : Waheed Islam <wislam AT wislam DOT co DOT uk>
 * UDPATED : 2003/06/14
 * NOTE    : Copyright (c) 2003, Waheed Islam
 *           No copying for you!
 */


function spotLight(obj, yayNay) {
  if (yayNay == "on") {
    document.getElementById("content").style.visibility = "hidden";
    obj.style.visibility = "visible";
  }
  else {  // no checks, fallback.
    document.getElementById("content").style.visibility = "visible";
  }
}


function printEmail(user,host,pad) {
  /* some browsers might have trouble displaying this. */
  /* need to test in: amaya, nn3, ie3, opera3.62/5.02  */

  var user,host,pad;
  var at = "@";

  if (pad) { document.write("&lt;"); }
  document.write(user);
  document.write(at  );
  document.write(host);
  if (pad) { document.write("&gt;"); }
}

