// Calendar functions

function eventWindow(id)
{
    var hwnd = window.open('showEvent.php?id='+id,'Details', 'width=500,height=400,resizable=yes,scrollbars=yes');
	hwnd.focus();
}

