/* Javascript Document */
mapCreated = false;
function GetWidth()
{
        var x = 0;
        if (self.innerHeight) {
                x = self.innerWidth;
        } else if (document.documentElement && document.documentElement.clientHeight) {
                x = document.documentElement.clientWidth;
        } else if (document.body) {
                x = document.body.clientWidth;
        }
        return x;
}
 
function GetHeight()
{
        var y = 0;
        if (self.innerHeight) {
                y = self.innerHeight;
        } else if (document.documentElement && document.documentElement.clientHeight) {
                y = document.documentElement.clientHeight;
        } else if (document.body) {
                y = document.body.clientHeight;
        }
        return y;
}

var activeTab = 1;
function openTab(tabId) {
		// reset old tab and content
		document.getElementById("tabLink"+activeTab).className = "tabLink";
		document.getElementById("tabContent"+activeTab).className = "tabContent";
		// set new tab and content
		document.getElementById("tabLink"+tabId).className = "tabLinkActive";
		document.getElementById("tabContent"+tabId).className = "tabContentActive";
		activeTab = tabId;
		if(tabId==4){
				if (mapCreated == true){
				//map.checkResize();
						marker = new GMarker(new GLatLng(59.317730,18.057511))
				    marker.openInfoWindowHtml('<font style="font-size:11px;">Delikatessen Bistro Bar<br>Krukmakargatan 22, 118 51 Stockholm<br>Tel. 08.6584250<br>M&aring;n-Fre 17-23&nbsp;&nbsp;&bull;&nbsp;&nbsp;L&ouml;r 17.30-24.00');
						map.addOverlay(marker);				
				}
				// instantiate google map				
				if (GBrowserIsCompatible()) {
				  var map = new GMap2(document.getElementById("map"));
				  mapCreated = true;
				  map.setCenter(new GLatLng(59.317383,18.055862), 16);
					marker = new GMarker(new GLatLng(59.317383,18.055862))
				  marker.openInfoWindowHtml('<font style="font-size:11px;">Delikatessen Bistro Bar<br>Krukmakargatan 22, 118 51 Stockholm<br>Tel. 08.6584250<br>M&aring;n-Fre 17.00-23.00&nbsp;&nbsp;&bull;&nbsp;&nbsp;L&ouml;r 17.30-24.00');
					map.addOverlay(marker);
				  map.addControl(new GSmallMapControl());
				
				}				
		}
}

