        function sopenspell(openmelink)
        {
          height = 391;
          width = 645;
          if (ie4) LinkToField = openmelink;
          if (gecko) {
            LinkToField = openmelink;
            height = height + 6;
          }
          if (op6) {
             LinkToField = openmelink;
             height = height + 10;
             width = width + 10;
          }
          if (op7) LinkToField = openmelink;



          if (!(op6 || gecko || ie4 || op7)) {
            alert("phpSpell only supports one of the following browsers:\nOpera 6+, Netscape 6+, Mozilla 1+, Internet Explorer 4+, Safari");
          } else {
            directory = "/spell/";
            win1=window.open(directory+"phpSpell.html","spellcheckwin",'resizable=no,width='+width+',height='+height);
            if (win1.opener == null) win1.opener = self;
          }
          return (false);
        }
