function popabbr(){
window.open ('misc/abbr.htm', 'abbrwindow', config='height=350, width=300, left=150, top=100, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no')
}

function message(who, where, why)
{
var i, Outstring, s, send;
s= ':otliam';
send = "";
for (i=6; i >=0; i--)
	send+= s.charAt(i);
for (i=0; i <=16; i++)
  {
  s = who.charAt(i);
  if ( s == '*' ) s= '@';
  send += s;
  s = where.charAt(i);
  if ( s == '*' ) s= '@';
  send += s;
  }
Outstring= ('<a href=\"'+ send +'\">');
Outstring+= ('<b>' + why + '</b></a>');
return Outstring;
}
