/*
 * Copyright 2004, Peter Rowntree. All Rights Reserved.
 * http://www.hdyn.com/wr/common/contact.php?addr=pr
 */
 
function goMain()
{
   if(window.name == "com_hdyn_im")
   {    
      alert("This window is the popup window, and you should not open the main page in the popup window, so a new window is being opened. See 'the popup window' in the help for more information.");
      var w=openNewURLWindow("main.html","","",false,true,"You should not open the main page in the popup window, but popups seem to be disabled. You're being redirected to some help on the subject.");
      if(w != null)
         w.focus();
      else
         window.location='help.html#popups';
   }
   else
      window.location='main.html';
}
