<!-- //


function showMap()
{
	var okno = null;
	var width = 570;
	var height = 542;
	ScrWidth = 640;
	ScrHeight = 480;
	if(window.screen)
  	{
   	ScrWidth = window.screen.width; 
		ScrHeight = window.screen.height;
  	}
  	PosX = Math.round((ScrWidth - width) / 2);
  	PosY = Math.round((ScrHeight - height) / 2);
  	okno = window.open("", "mapa", "menubar=no,toolbar=no,location=no,directories=no,status=yes,scrollbars=no,resizable=no,copyhistory=no,width=" + width + ",height=" + height + ",left=" + PosX + ",top=" + PosY);
	okno.document.open();
	okno.document.clear();
	okno.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><title>O-La-La & Bazar - Mapa dojazdu</title></head><style type=\"text/css\">body { margin:0;padding:0;background:#000000; }</style><body><img src=\"images/mapa.jpg\" alt=\"Kliknij gdziekolwiek aby zamkn±æ to okno.\" title=\"Kliknij gdziekolwiek aby zamkn±æ to okno.\" border=\"0\" onclick=\"window.close();\" /></body></html>");
	okno.document.close();
  	okno.focus();	
}

// -->
