function demoGoogleMaps(){    Shadowbox.open({        player:     'html',        content:    '<iframe width="900" height="600" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.pl/maps?hl=pl&amp;source=hp&amp;q=mwmlegal&amp;lr=&amp;ie=UTF8&amp;hq=mwmlegal&amp;hnear=&amp;radius=15000&amp;cid=15561556944479180638&amp;ll=53.432549,14.548473&amp;spn=0.030681,0.077248&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe>',        height:     605,        width:      901,	});}		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;
