function changeMap()
{
	if (document.getElementById('regionSelect').value == "BC")
	{
		document.getElementById('mapNat').className = "hide";
		document.getElementById('mapProv').innerHTML = '<iframe width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=fr&amp;msa=0&amp;msid=116465666586338229145.00046eaee081042878f83&amp;ll=49.922935,-121.618652&amp;spn=2.475696,5.932617&amp;z=7&amp;output=embed"></iframe>';
		
	}	
	else 
	if (document.getElementById('regionSelect').value == "AB")
	{
		document.getElementById('mapNat').className = "hide";
		document.getElementById('mapProv').innerHTML = '<iframe width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=fr&amp;msa=0&amp;msid=116465666586338229145.00046eaee081042878f83&amp;ll=52.709675,-113.90625&amp;spn=4.660206,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 width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=fr&amp;msa=0&amp;msid=116465666586338229145.00046eaee081042878f83&amp;ll=52.629729,-106.259766&amp;spn=4.66873,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 width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=fr&amp;msa=0&amp;msid=116465666586338229145.00046eaee081042878f83&amp;ll=51.027576,-98.041992&amp;spn=4.837623,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 width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=fr&amp;msa=0&amp;msid=116465666586338229145.00046eaee081042878f83&amp;ll=44.292401,-79.013672&amp;spn=5.504592,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 width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=fr&amp;msa=0&amp;msid=116465666586338229145.00046eaee081042878f83&amp;ll=46.589069,-71.466064&amp;spn=2.642559,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 width="540" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=fr&amp;msa=0&amp;msid=116465666586338229145.00046eaee081042878f83&amp;ll=45.552525,-64.6875&amp;spn=2.692641,5.932617&amp;z=7&amp;output=embed"></iframe>'		
	}
	else return;
}



function resetMap() 
{
	document.getElementById('mapNat').className = "showMap";
	document.getElementById('mapProv').innerHTML = '';
}