// JavaScript Document
var popUpWin=0;
function windowOpen(name)
{
var URLStr = name + "_pop.htm";
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=yes,copyhistory=yes,width=400,height=500,left=0,top=0,screenX=0,screenY=0');
popUpWin.focus();
}
function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
	}