window.name = "main";

function openbrowser(theURL,winName,features) {

  var seite = window.open(theURL,winName,features);

  if(seite.closed == true) seite;

  else seite.focus();
}