
var _Ajax = null;
	
function on_load()
{
	if(_Ajax == null)
	{
		_ptools._System.setAttribute('path', URL_BIN_DIR +'js/ptools/');
		var _Ajax = new ajax();
		
	};
	
	// Kalendar laden
	_Ajax.asyncPost('ajax_getcal', 'insert_cal', {
			project : 'sosblog',
			time : ''
		}
	);
};

function insert_cal( html )
{
	document.getElementById('cal').innerHTML = html;
};