// ------- Show Map Address (Google Map) ------- // 
    function showMapByAddress(location) {
		var currentValue = location;
		if(currentValue.indexOf("@") > -1) {
			var arr = currentValue.split("@");
			if(arr.length == 2) {
				address = arr[1];
				locationName = arr[0] + "<br/>" + arr[1]; 	
			}	
		} else if (currentValue.length > 0) {
			address = currentValue;
			locationName = currentValue; 	
		}
		mapAddress = address;	

		var url = 'http://maps.google.com/maps?f=q&hl=en&geocode=&sll=37.0625,-95.677068&sspn=50.244827,82.265625&ie=UTF8&z=17&iwloc=addr&om=0&q=' + address;
		window.open(url);
	}



// ---------Show & Hide Divs------------ //
function showHideDiv(divID){
  
  var divOb = document.getElementById(divID);
  
  if(divOb.style.display=='none'){
     divOb.style.display= "block";
  }
  else{
      divOb.style.display= "none";
  }

}



// ----- Switch Elements: Hides the first, shows the second -- //
function switchElements(toHideID, toShowID){
  
  var toHideElem = document.getElementById(toHideID);
  var toShowElem = document.getElementById(toShowID);
  alert('hide: ' + toHideElem.id + '\nshow: ' + toShowElem.id);
  toHideElem.style.display="none";
  toShowElem.style.display="block";
  
}