function changeMap()
{
	if (document.getElementById('regionSelect').value == "BC")
	{
		document.getElementById('mapNat').className = "hide";
		document.getElementById('mapProv').innerHTML = '<iframe class="border" width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=116465666586338229145.00046e5efd16537943e09&amp;ll=49.823809,-122.585449&amp;spn=4.962027,11.865234&amp;z=6&amp;output=embed"></iframe>';
		
	}	
	else 
	if (document.getElementById('regionSelect').value == "AB")
	{
		document.getElementById('mapNat').className = "hide";
		document.getElementById('mapProv').innerHTML = '<iframe class="border" width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=116465666586338229145.00046e5efd16537943e09&amp;ll=52.389011,-114.104004&amp;spn=4.694343,11.865234&amp;z=6&amp;output=embed"></iframe>'		
	}
	else if (document.getElementById('regionSelect').value == "SK")
	{
		document.getElementById('mapNat').className = "hide";
		document.getElementById('mapProv').innerHTML = '<iframe class="border" width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=116465666586338229145.00046e5efd16537943e09&amp;ll=52.49616,-106.501465&amp;spn=4.682953,11.865234&amp;z=6&amp;output=embed"></iframe>'		
	}
	else if (document.getElementById('regionSelect').value == "MB")
	{
		document.getElementById('mapNat').className = "hide";
		document.getElementById('mapProv').innerHTML = '<iframe class="border" width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=116465666586338229145.00046e5efd16537943e09&amp;ll=51.303145,-97.756348&amp;spn=4.80884,11.865234&amp;z=6&amp;output=embed"></iframe>'		
	}
	else if (document.getElementById('regionSelect').value == "ON")
	{
		document.getElementById('mapNat').className = "hide";
		document.getElementById('mapProv').innerHTML = '<iframe class="border" width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=116465666586338229145.00046e5efd16537943e09&amp;ll=44.355278,-79.013672&amp;spn=5.498704,11.865234&amp;z=6&amp;output=embed"></iframe>'		
	}
	else if(document.getElementById('regionSelect').value == "QC")
	{
		document.getElementById('mapNat').className = "hide";
		document.getElementById('mapProv').innerHTML = '<iframe class="border" width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=116465666586338229145.00046e5efd16537943e09&amp;ll=46.513516,-71.674805&amp;spn=2.646239,5.932617&amp;z=7&amp;output=embed"></iframe>'		
	}
	else if (document.getElementById('regionSelect').value == "ATL")
	{
		document.getElementById('mapNat').className = "hide";
		document.getElementById('mapProv').innerHTML = '<iframe class="border" width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=116465666586338229145.00046e5efd16537943e09&amp;ll=45.5756,-64.588623&amp;spn=2.691536,5.932617&amp;z=7&amp;output=embed"></iframe>'		
	}
	else return;
}



function resetMap() 
{
	document.getElementById('mapNat').className = "showMap";
	document.getElementById('mapProv').innerHTML = '';
}