<!--

function open_page(page,w1,h1){
s=new Date();
width=eval(w1)+20;
height=eval(h1)+20;
parametry='width='+width+', height='+height;
nazwaOkna="page"+s.getTime();


if (document.all) {
   /* the following is only available after onLoad */
   w = document.body.clientWidth;
   h = document.body.clientHeight;
}
else {
   w = window.innerWidth;
   h = window.innerHeight;
}
var leftPos = (w-width)/2, topPos = (h-height)/2;

nazwa=window.open(page,nazwaOkna,'width=' + width + ',height='+height+',top='+topPos+',left='+leftPos+',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no');
}

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function popUpWindow(URLStr, left, top, width, height)
{
 
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


//-->