function sayHello()
{
	alert("hello");
}

function openCalendar(calendar)
{
	fileToOpen = "/images/calendars/" + calendar;
	alert(fileToOpen);
    window.open(fileToOpen, "Calendar", "height=968, width=710, fullscreen=no, title=no, titlebar=no, location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes");
}


function openWindow(pageX)
{
    window.open(pageX, "_blank");
}


function openGallery(gallery)
{
	fileToOpen = "/images/galleries/" + gallery + "/index.html";
    window.open(fileToOpen, gallery+"_Gallery", "height=550, width=550, fullscreen=no, title=no, titlebar=no, location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes");
}
