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 openContentWindow(pagetoopen, wi, he)
{
    window.open(pagetoopen, "NewWin", "height=" + he + ", width=" + wi + ", 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");
}

function OpenWinLocal(URL, pophgt, popwth) {
		var winname = "consentform";
		var wth = 0; var hgt = 0; var lef = 0; var top = 0;
		var needscroll = 0;
		
		if (document.all || document.layers) {
			wth = screen.width;
			hgt = screen.height;
		}
		
		lef = (wth - popwth) / 2;
		top = (hgt - pophgt) / 2;
		
		var opts = "width=" + popwth + ",height=" + pophgt + ",left=" + lef + ",top=" + top + ",screenX=" + lef + ",screenY=" + top + ",scrollbars=yes,resizable=yes"
	
		window.open(URL, winname, opts);
	}
