function dynamicWindow(hrefLocation) {
	var intWinHeight = 10;
	var intWinWidth = 10;
	var i = 0;
	windowReference = window.open(hrefLocation, 'newDynamicWindow', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width=3, height=3');
	do {
		i += 1;
		windowReference.resizeTo(intWinWidth, intWinHeight);
		intWinHeight = intWinHeight + 10;
		intWinWidth = intWinWidth + 11;
	} while (i < 40)
}
function staticWindow(hrefLocation) {
	window.open(hrefLocation, 'newStaticWindow', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width=800, height=600');
}
function showHide(menuItem) {
     var menu = document.getElementById(menuItem).style;
     menu.display = (menu.display == "none") ? "" : "none";
}