/* JavaScript */
/* Generated by RTFC Version 7.00 Werner Krauße - Info: www.rtfc.de */

function Popup(url)
{
   var width = screen.width * 2 / 3;
   var height = screen.height / 2;
   var attr = "width=" + width + ",height=" + height + ",resizable=yes,scrollbars=yes";

   var PopupWindow = window.open(url, "_popup", attr);
   if (PopupWindow.focus != null) PopupWindow.focus();
}


