var week = 1;

function getid(str){
	return document.getElementById(str);
}
function getref(str)
{
	return document.getElementsByName(str)[0];
}

function createAjax()
{
var xt;
xt = window.XMLHttpRequest ? new XMLHttpRequest() : ( window.ActiveXObject ? new window.ActiveXObject('Microsoft.XMLHTTP') : null)
return xt;
}

function getEvents()
{
 	var str ='command=getevents';
		
//	str += '&date=' + getid('cdate').value
	str += '&cmonth=' + getid('cmonth').value
	str += '&week=' + week

//	alert(str)
	try { 
	var jax = createAjax(); if(!jax)return;
	jax.open("GET","getevents.php?"+str,false)
	jax.send(null)
	}catch(e){}
		
	document.getElementById('totalcont').innerHTML = jax.responseText
}


