function setSessionValue()
{ 
	var name=document.getElementById('required-Name').value;
	var email=document.getElementById('required-Email').value;
	var phone=document.getElementById('required-Number').value;
	var church=document.getElementById('required-Church').value;
	var fees=document.getElementById('os0').value;
	var stream="";
	if(document.getElementById('stream_fresh').checked == true)
			stream=document.getElementById('stream_fresh').value + ",";
	if(document.getElementById('stream_rookie').checked == true)
			stream= stream + document.getElementById('stream_rookie').value + ",";
	if(document.getElementById('stream_coach').checked == true)
			stream= stream + document.getElementById('stream_coach').value;
			
	
	
	var url="payment.php?name=" + name + "&email=" + email + "&phone=" + phone + "&church=" + church + "&fee=" + fees + "&stream=" + stream;		
///	alert(url);
	var http = getHTTPObject();
	http.open("GET", url);			
	http.onreadystatechange =function(){
		if (http.readyState == 4) 
		{
		  if(http.status==200) 
		  {
		  	var results=http.responseText;		  			  	
		  }
		}
	}
	 http.send(null); 
}

function getHTTPObject() {
  var xmlhttp;

  if(window.XMLHttpRequest){
    xmlhttp = new XMLHttpRequest();
  }
  else if (window.ActiveXObject){
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    if (!xmlhttp){
        xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
    }   
}
  return xmlhttp; 
}
