// JavaScript Document

var popUpMapy=0;
function popUpMap(URLStr, left, top, width, height)
{
  if(popUpMapy)
  {
    if(!popUpMapy.closed) popUpMapy.close();
  }
  popUpMapy = open(URLStr, 'popUpMapy', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
