function demoGoogleMaps(){
    Shadowbox.open({
        player:     'html',
        content:    '<iframe width="800" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.pl/maps?f=q&amp;source=s_q&amp;hl=pl&amp;geocode=&amp;q=lg+rent&amp;sll=52.025459,19.204102&amp;sspn=11.271922,33.815918&amp;ie=UTF8&amp;hq=lg+rent&amp;hnear=&amp;cid=13807420117645008032&amp;ll=53.445842,14.536114&amp;spn=0.040895,0.137329&amp;z=13&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.pl/maps?f=q&amp;source=embed&amp;hl=pl&amp;geocode=&amp;q=lg+rent&amp;sll=52.025459,19.204102&amp;sspn=11.271922,33.815918&amp;ie=UTF8&amp;hq=lg+rent&amp;hnear=&amp;cid=13807420117645008032&amp;ll=53.445842,14.536114&amp;spn=0.040895,0.137329&amp;z=13&amp;iwloc=A" style="color:#0000FF;text-align:left">Wyświetl większą mapę</a></small>',
        height:     430,
        width:      800,
	});
}


		var img = document.getElementById("img");
		var interval;
		function powieksz()
		{
		  var width = img.width;
		  var height = img.height;
		  if(width >= 400 || height >= 301)
		  {
			return;
		  }
		  else
		  {
			img.width = width + 1;
			img.height = height + 1;
		  }
		  interval = setTimeout("powieksz()", 25);//im mniejsza liczba tym szybciej obraz będzie się powiększał
		}
		function stop()
		{
		  clearTimeout(interval);
		}
		img.onmouseover = powieksz;
		img.onmouseout = stop;


