
function ajaxCalenda( oUrl, oParam, callBackFunction )
{

var	myAjax = new Ajax.Request(
		oUrl,
		{
			asynchronous:true,
			encoding: 'euc-kr',
			method: 'post',
			parameters: oParam,
			onCreate: function() {
				Element.show('Loader');
				Element.hide('Dynamic');
			},
			onSuccess:function( responseHttpObj ) {
				$("Dynamic").innerHTML = responseHttpObj.responseText;
			},
			onComplete : function() {
				Element.hide('Loader');
				Element.show('Dynamic');
			},
			onFallure: function() {
				// ºñµ¿±â Åë½ÅÁß ¿À·ù ¹ß»ý
				$("Dynamic").innerHTML = "Error...";
			}
		}
	);

}
