// JavaScript Document


var xmlHttp2

function ajaxSaveInfo()
{ 
xmlHttp2=GetXmlHttpObject()
if (xmlHttp2==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }

 
	month = document.getElementById("month").value;
	day = document.getElementById("day").value;
	year = document.getElementById("year").value;
	saveID = document.getElementById("saveID").value;

	saveDone = 0;
	if (document.getElementById("saveDone").checked == true) { saveDone = 1 }


	
	saveComments = document.getElementById("saveComments").value;

 document.getElementById("munroInfo").innerHTML='saving...';

 
var url="/index-saveInfo.php?month="+ month +"&day="+ day +"&year="+ year +"&saveID="+ saveID +"&saveDone="+ saveDone +"&saveComments="+ saveComments +"&sid="+Math.random()

xmlHttp2.onreadystatechange=stateChanged2;
xmlHttp2.open("GET",url,true);
xmlHttp2.send(null);

}






function stateChanged2() 
{ 
if (xmlHttp2.readyState==4 || xmlHttp2.readyState=="complete")
 { 
 document.getElementById("munroInfo").innerHTML='Saved. Click on the map to view other mountain information'
 } 
}

