var gmap = {
	Sydney: "<iframe width='660' height='350' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=116642718585131843820.00048c45f8acee00fae28&amp;ll=-33.861667,151.207666&amp;spn=0,0&amp;output=embed'></iframe>",
	Brisbane: "<iframe width='660' height='350' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Watches+of+Switzerland+Brisbane+Shop+G17+Macarthur+Central+Cnr+Edward+%26+Elizabeth+Sts+Brisbane+QLD+4000+Australia&amp;sll=-27.469326,153.029122&amp;sspn=0.009462,0.01929&amp;ie=UTF8&amp;hq=Watches+of+Switzerland+Brisbane+Shop+G17+Macarthur+Central+Cnr+Edward+%26+Elizabeth+Sts&amp;hnear=Brisbane+Queensland,+Australia&amp;ll=-27.469307,153.028994&amp;spn=0.006295,0.006295&amp;output=embed'></iframe>",
	Melbourne: "<iframe width='660' height='350' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Watches+of+Switzerland+Melbourne+294+Collins+Street+Melbourne,+Victoria+3000+Australia+&amp;sll=-27.467707,153.028994&amp;sspn=0.008986,0.01929&amp;ie=UTF8&amp;hq=Watches+of+Switzerland&amp;hnear=294+Collins+St,+Melbourne+Victoria+3000,+Australia&amp;ll=-37.81597,144.964225&amp;spn=0.006295,0.006295&amp;output=embed'></iframe>",
	Perth: "<iframe width='660' height='350' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Watches+of+Switzerland+Perth+38+King+Street+Perth,+Western+Australia+6000,+Australia+&amp;sll=-37.816683,144.966359&amp;sspn=0.008001,0.01929&amp;ie=UTF8&amp;hq=Watches+of+Switzerland&amp;hnear=38+King+St,+Perth+Western+Australia+6000,+Australia&amp;ll=-31.9522,115.85483&amp;spn=0.006295,0.006295&amp;output=embed'></iframe>",
	
   
	
	'showmap': function(mapid){
		var id = 'gmap';
		var url = gmap.getUrl(mapid);
		var info = gmap.getInfo(mapid);
		document.getElementById(id).innerHTML = url;
		document.getElementById('MapInfo').innerHTML = info;
		document.getElementById('store-name').innerHTML = mapid;
	},
	'getUrl': function(id){
		switch (id) {
			case 'Brisbane':
				return gmap.Brisbane;
				break;
			case 'Sydney':
				return gmap.Sydney;
				break;
			case 'Melbourne':
				return gmap.Melbourne;
				break;
			case 'Perth':
				return gmap.Perth;
				break;
		}
	},
	'getInfo': function(id){
			var html = "";
			switch (id) {
			case 'Brisbane':
				{
					html += "<div><strong>Address:</strong> Watches of Switzerland Brisbane Shop G17 Macarthur Central Cnr Edward - Elizabeth Sts Brisbane QLD 4000 Australia</div>";
					html += "<div><strong>Tel:</strong> 1300 888 091 / +61 (0)7 3229 8688</div>";
					html += "<div><strong>Fax:</strong> +61 (0)7 3211 8633</div>";
				}
				break;
			case 'Sydney':
				{
					//array ("name"=>"Sydney","address"=>"","telephone"=>"","fax"=>""),
					html += "<div><strong>Address:</strong> Watches of Switzerland Sydney Four Seasons Hotel 199 George Street Sydney, New South Wales 2000 Australia</div>";
					html += "<div><strong>Tel:</strong> 1300 888 091 / +61 (0)7 3229 8688</div>";
					html += "<div><strong>Fax:</strong> +61 (0)7 3211 8633</div>";
				}
				break;
			case 'Melbourne':
				 {
					//array ("name"=>"Melbourne","address"=>"","telephone"=>"","fax"=>""),
					html += "<div><strong>Address:</strong> Watches of Switzerland Melbourne 294 Collins Street Melbourne, Victoria 3000 Australia</div>";
					html += "<div><strong>Tel:</strong> 1300 888 091 / +61 (0)7 3229 8688";
					html += "<strong>Fax:</strong> +61 (0)7 3211 8633";
				}
				break;
			case 'Perth':
				 {
					//array ("name"=>"Perth","address"=>" ","telephone"=>"","fax"=>"<strong>Fax:</strong> +61 (0)7 3211 8633"),
					html += "<div><strong>Address:</strong> Watches of Switzerland Perth 38 King Street Perth, Western Australia 6000, Australia</div>";
					html += "<div><strong>Tel:</strong> 1300 888 091 / +61 (0)7 3229 8688</div>";
					html += "<div><strong>Fax:</strong> +61 (0)7 3211 8633</div>";
				}
				break;
		}
		return html;
	}
	
}

