function openwindow(url)
{
	window.open(url,"mywindow","resizable=1,width=570,height=710");
}




function addBookmark(title, url) {
        if (window.sidebar) { // firefox
              window.sidebar.addPanel(title, url,"");
        } else if( document.all ) { //MSIE
                window.external.AddFavorite( url, title);
        } else {
               alert("Sorry, your browser doesn't support this");
        }
}







	function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
  		map.setCenter(new GLatLng(43.833326,-79.522095), 13);
		map.openInfoWindow(map.getCenter(),
                   document.createTextNode("Dance Stream Studio"));
				
				           var marker = new GMarker(map.getCenter());
        GEvent.addListener(marker, "click", function() {

        });
           map.addOverlay(marker);
     
      }
    }
