function previewMessage()
{
   previewWindow=window.open("","displayWindow","menubar=no,resizable=yes,scrollbar=yes,width=400,height=300");
   previewWindow.document.open("text/html");
   previewWindow.document.clear();
   previewWindow.document.write("<html><head><title>GoodMatch: message preview</title></head><body bgcolor='#FFCC00'><p align='right'><a href='javascript:window.close()'>close window</a></p><p>");
   previewWindow.document.write(form.message.value);
   previewWindow.document.write("</p></body></html>");
   previewWindow.document.close();
   previewWindow.focus();
}

function showBookmark()
{
  var ver = navigator.appName;
  var num = parseInt(navigator.appVersion);
  if ((ver == "Microsoft Internet Explorer") && (num >= 4))
  {
    document.write('<a href="javascript: window.external.AddFavorite(\'http://www.goodmatch.co.uk/\', \'GoodMatch UK and Ireland\')">bookmark</a>');
  }
  else
  {
    document.write("bookmark");
  }
}

