//**************************************
// Copyright© 2006-2007 Marcus Humann
// Alle Rechte vorbehalten
// Tous droits réservés
// All rights reserved
// www.mhst.net
//**************************************

function popup(url, width, height)
{
  wnd = window.open(url, "wincalc2", "toolbar=no,titlebar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,fullscreen=no,scrollbars=no,width=" + width + ",height=" + height);
  var usera = navigator.userAgent;
  var bMSIE5 = (usera.indexOf("MSIE 5.")>=1);
  var bMSIE6 = (usera.indexOf("MSIE 6.")>=1);
  if (bMSIE5 || bMSIE6)
  {
    wnd.focus();
  }
}
