var map = null;
var point = null;


function MakeMap(latitude, longitude, text, id)
{
	if( GBrowserIsCompatible() )
	{
		map = new GMap2(document.getElementById(id));
		if( map )
		{
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());

			point = new GLatLng(latitude, longitude);

			if( point )
			{
				map.setCenter(point, 13);

				var marker = new GMarker(point);
				
				if( marker )
				{
					map.addOverlay(marker);
					marker.openInfoWindowHtml(text);
				}
			}

			return;
		}
	}

	alert("GoogleMaps problem");
}

function ShowMapLeft()
{
	document.getElementById('googlemapcontainer').style.display = 'block';
	document.getElementById('map1').style.display='none';
	document.getElementById('map2').style.display='inline';
	document.getElementById('get_directions').href = 'http://maps.google.ca/maps?f=d&hl=en&geocode=&saddr=&daddr=45.103244,-79.588201&sll=45.10067,-79.587327&sspn=0.011026,0.020084&ie=UTF8&ll=45.103244,-79.588201&spn=0.011026,0.020084&z=16';
	MakeMap(45.103244, -79.588201, '<p><strong>Tamarack Office</strong><br/>Unit 4A-1005 Henshaw Lake Road<br/>Port Carling, Ontario<br/>P0B 1J0<br/>(705) 765-1364</p>', 'googlemap');
}

function ShowMapRight()
{
	document.getElementById('googlemapcontainer').style.display = 'block';
	document.getElementById('map1').style.display='inline';
	document.getElementById('map2').style.display='none';
	document.getElementById('get_directions').href = 'http://maps.google.ca/maps?f=d&hl=en&geocode=&saddr=&daddr=%231077+Hwy+%23141+Rosseau,+Ontario,+Canada&mra=pe&mrcr=0&sll=45.10067,-79.587327&sspn=0.010587,0.020084&ie=UTF8&z=16';
	MakeMap(45.264258, -79.64884, '<p><strong>Tamarack Warehouse</strong><br/>#1077 Hwy #141<br/>Rosseau, Ontario<br/>P0B 1J0<br/>(705) 732-1036</p>', 'googlemap');
}

addEvent(window, 'load', ShowMapLeft);