function message()
{
 
  window.status = "";
 strFeatures = "top=100,left=100,width=450,height=265,toolbar=no," 
             + "menubar=no,location=no,directories=no,resizable=no";
  objNewWindow = window.open("message.htm", "MyNewWindow", strFeatures);
  window.status = "Opened a new Browser Window.";
  window.event.cancelBubble = true;
  window.event.returnValue = false;
}