// -- MESSAGE WINDOW --
function msgPopup(msg) {
  showMsg(msg,4500);
}

function showMsg(msg, timeout) {
  wo = window.open('/popup.asp?msg=' + msg + '&timeout=' + timeout,'','toolbar = no, width = 230, height = 140');
  wo.focus();
}


// -- ROLL OVER --
function rollOver(pic, state) {

  if (state) {
    re = /Off.gif/;
    str = "On.gif";

  } else {
    re = /On.gif/;
    str = "Off.gif";
  }

  oldSrc = document.images[pic].src;
  document.images[pic].src = oldSrc.replace(re, str);
}
