var posX,posY,infoTxt;

function setGoogleVariables(SetPosX,SetPosY,SetInfoTxt)
{
	posX=SetPosX;
	posY=SetPosY;
	infoTxt=SetInfoTxt;
}

function googleMapLoad()
 {		 
	 if (GBrowserIsCompatible()) 
	 	{
    	var map = new GMap2(document.getElementById("map"));
    	map.addControl(new GLargeMapControl());   	
    	map.setCenter(new GLatLng('51.944264879028765','19.0283203125'),5);
    	    	
    	var marker = new GMarker(new GLatLng(posX,posY));
    	GEvent.addListener(marker, "click", function() {marker.openInfoWindowHtml('ul. Malinnik 25<br/>58-560 Jelenia Góra<br/>tel.: 0*75 64 38 996 '); });    	
    	map.addOverlay(marker);    	
    	
    	var marker2 = new GMarker(new GLatLng('50.08354072598376','19.97610569000244'));
    	GEvent.addListener(marker2, "click", function() {marker2.openInfoWindowHtml('ul. Dzielskiego 2<br/>31-465 Kraków<br/>tel/fax.: 0*12 413 12 55 '); });    	
    	map.addOverlay(marker2);
    	
    	var marker3 = new GMarker(new GLatLng('52.32881563323233','20.872843265533447'));
    	GEvent.addListener(marker3, "click", function() {marker3.openInfoWindowHtml('ul. Zielona 6<br/>05-092  Warszawa - Łomianki <br/>tel: 605 210 293'); });    	
    	map.addOverlay(marker3);
    	
		}
 }

function popupWindow(siteHref)
		{
		
		window.open(siteHref,'','toolbar=0,status=0,location=0, scrollbars=yes,resizable=no,width=600,height=530');	
		}