var ajaxObjects = new Array();	
	
function calendar(f1,f2){

	var ajaxIndex = ajaxObjects.length;
	ajaxObjects[ajaxIndex] = new sack();
	ajaxObjects[ajaxIndex].requestFile = 'ajaxcalendar.php?nm=' + f1 + '&ny='+f2;
	ajaxObjects[ajaxIndex].onCompletion = function(){ saveAjaxsearchoption(ajaxIndex); };	
	ajaxObjects[ajaxIndex].runAJAX();	
	
}

function saveAjaxsearchoption(ajaxIndex)
{
	var productItems = ajaxObjects[ajaxIndex].response;	
	//alert(productItems);
	document.getElementById('eventCalendar').innerHTML = productItems;
}