// JavaScript Document
function resizeText(multiplier) { 
  if (document.getElementById("main_content").style.fontSize == "") { 
     document.getElementById("main_content").style.fontSize = "1em";
	 document.getElementById("main_content").style.lineHeight = "1.4em";
  } 
	if(document.getElementById("main_content").style.fontSize != "1.4em"){
		document.getElementById("main_content").style.fontSize = parseFloat(document.getElementById("main_content").style.fontSize) + (multiplier * 0.2) + "em"; 
		document.getElementById("main_content").style.lineHeight = document.getElementById("main_content").style.lineHeight + 1;
	} else {
		document.getElementById("main_content").style.fontSize = "1em";
	}
}

function printer_friendly(url){
	window.open(url+"?print=true","mywindow","width=800,resizable=0,scrollbars=1,menubar=0,toolbar=0,status=0,location=0");
}
function email_to_friend(url){
	window.open(url,"email_to_a_Friend","width=500,height=310,toolbars=0,scrollbars=0 menubar=1,resizable=0");
}
function show_map(){
	//document.getElementById("main_image").innerHTML = location;
	 //google.load("maps", "2");
      // Call this function when the page has been loaded
        var map = new google.maps.Map2(document.getElementById("main_image"));
        map.setCenter(new google.maps.LatLng(37.4419, -122.1419), 13);
		map.setUIToDefault();
}
