var newWin;
function openwin(name,title,style) {
  newWin=window.open(name,title,style);
  setTimeout("if(newWin) newWin.focus()",0);
}
