function check()
{
  if(mynew.closed)
    alert("closed!");
  else
    setTimeout("check();",500);
}
mynew=window.open("new.htm");
check();