
//js_include("/quadrant/admin/prototype-1-1.6.0.2.js");

function getMonth(month, year, location)
{
	if(month && year)
	{//alert(month+year);
		new Ajax.Request('http://www.stpaulshospital.org/index.php', 
			{  
				method: 'post',
				parameters: {'ajax': 1, 'month': month, 'year': year, 'location': location},
				onSuccess: function(response) {calendarHTML(response);}
			});
	}
}


function calendarHTML(response)
{
	$('calendar').update(response.responseText);
}


function js_include($script)
{
	var script = document.createElement('script');
	script.src = $script;
	script.type = 'text/javascript';
	var head = document.getElementsByTagName('head').item(0);
	head.appendChild(script);
}


