var map;


		function load() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(50.88397864970813,20.627464056015015), 15);
				map.addControl(new GSmallMapControl()); 
				
				var ikona1 = new GIcon();  
        ikona1.image = "http://www.studiopabis.pl/images/marker.png";  
        ikona1.iconSize = new GSize(86, 61);  
        ikona1.infoWindowAnchor = new GPoint(16,16);  
        ikona1.iconAnchor = new GPoint(18,55);  
        

        dodajMarker(50.88397864970813,20.627464056015015,{title: 'Pabis - studio dekoratorskie', icon: ikona1});  
      }
    }
    function dodajMarker(lat,lon,opcje)     
    {     
     map.addOverlay(new GMarker(new GLatLng(lat,lon),opcje));     
    }  

		
		<!--

//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// --> 