function openPopup ()
{
  var sLogin = document.FrontPage_Form2.Password.value;

  <!-- Validate the login -->
  if (sLogin == "megabold" || sLogin == "members4")
  {
    window.open("./shopping_cart.htm", "cart", "toolbar=yes, location=no, directories=no, 	status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=800, 	height=530");
  }
  else
  {
    alert("Incorrect login");
  }
}
