function get_cal(theVars){
	var http = getHTTPObject(); // We create the HTTP Object
	targ = "/includes/calendar_inc.asp?"+theVars
	//alert(targ);
	http.open('GET', targ, false);
	http.send(null);
	
	strHTML = http.responseText;
	document.getElementById("calendar").innerHTML = strHTML;
}

function get_blot_cal(theVars){
	var http = getHTTPObject(); // We create the HTTP Object
	targ = "/includes/blotter_calendar_inc.asp?"+theVars
	//alert(targ);
	http.open('GET', targ, false);
	http.send(null);
	
	strHTML = http.responseText;
	document.getElementById("calendar").innerHTML = strHTML;
}