
function ShowCalendar()
{
	document.getElementById('EventDateSelect').style.display = 'block';
}

function HideCalendar()
{
	document.getElementById('EventDateSelect').style.display = 'none';
}

function ShowCalendarPrint()
{
	window.open("/module/CalendarPrint.cfm", "CalendarWindow", "width=485,height=350,resizable=yes,scrollbars=yes");
}

function openWindowInCentre(theURL,theName,theWidth,theHeight,boolean_scrollable)
{
	heightOffSet = 50;
	winLocX = screen.width/2 - theWidth/2;
	winLocY = screen.height/2 - theHeight/2 - heightOffSet;
	window.open(theURL,theName,'toolbar=no,location=no,directories=no,status=0,menubar=no,scrollbars=' + boolean_scrollable + ',resizable=yes,menu=no,width='+theWidth+',height='+theHeight+',screenx='+winLocX+',screeny='+winLocY+',left='+winLocX+',top='+winLocY);
}