var dbCalendarPath= window.location.protocol + '//' + window.location.host + '/wpalug/wpalug.nsf';
var calendarid='';
function getCalendar(){$(".CalendarContents").each(function(){$(this).html('');
var a= window.location.protocol + '//' + window.location.host + '/wpalug/wpalug.nsf/agnt_AJAX_Calendar?OpenAgent&rdm='+Math.random()+'&caldate='+this.id;
var b=$.ajax({url:a,type:'get',dataType:'xml',success:showCalendar})})}
function showCalendar(a){var b=$(a).find('Calendarid').text();var c=$(a).find('CalendarContents').text();$(".CalendarContents").each(function(){if(this.id=b){$(this).html(c)}})}
function setCalendar(a){$(".CalendarContents").each(function(){$(this).attr("id",a)});getCalendar()}
$(document).ready(getCalendar);
