// IE has some weird way of positioning a new window,
// so move it where I want it - with just a bit of the opener visible on the left.
// Mozilla history starts at 1
if(navigator.appName=="Netscape")
{
   if(history.length==1) window.moveTo(15,0);
}
else if(history.length==0) window.moveTo(15,0);

function raiseopener()
{
  if(!opener||opener.closed) self.close();
  else if(opener.focus) opener.focus();
}

