function ProcessPage (pageName)
{
  // LOGIN PAGE
  if (pageName == "login")
  {
    document.loginform.LOG_LoginName.value = "";
    document.loginform.LOG_Password.value = "";
    document.loginform.LOG_LoginName.focus();
  }
}

// Used to display a HELP message on the What's On page
function helpmessage ()
{
  var strMessage = "To access a Flyer and Fax Registration Form, ";
  strMessage = strMessage + "\r - Right-click on the 'Title'\r - Click on 'Open in New Window' from the Menu \r ";
  strMessage = strMessage + "\rYou can then read, print or save the Flyer as you wish.";
  alert (strMessage);
  window.event.returnValue = false;
}


// Redirects a page to the specified URL
function redirect (url)
{
  window.location = url;
}

function Message (strMessage)
{
  if (strMessage == "KEYWORDS")
  {
    window.open("keywordsparent.html", "wKeywords", "directories=no,location=no,scrollbars=yes,menubar=no,resizable=no,toolbar=no,width=300,height=500,screenX=300,screenY=50");
  }
  
  if (strMessage == "HELP")
  {
    window.open("help.php3","Help","directories=no,location=no,scrollbars=no,menubar=no,resizable=no,toolbar=no,width=300,height=300,screenX=300,screenY=100");
  }
}