function PhotoPopup (url,windowname,w,h) {
	window.open(url,windowname,'width='+w+',height='+h+',toolbar=no,location=no,status=no,menubar=yes,resizable=yes,scrollbars=yes');
}

function MenuToggle (section) {
	if (document.getElementById('menuitems_'+section) && document.getElementById('menutoggle_'+section)) {
		block = document.getElementById('menuitems_'+section);
		icon = document.getElementById('menutoggle_'+section);
		open_icon = 'menutoggle_open.gif';
		closed_icon = 'menutoggle_closed.gif';
		if (icon.src.toString().indexOf('_closed') > -1) {
			icon.src = icon.src.toString().replace(closed_icon,open_icon);
		} else {
			icon.src = icon.src.toString().replace(open_icon,closed_icon);
		}
		block.style.display = (block.style.display == 'none') ? 'block' : 'none';
		icon.blur();
		return true;
	}
}