function showImageWindow(photo,credit) {
	newWindow = window.open('/festival/imageView/?pic=/festival/images/' + photo + '&credit=' + credit, 'myWin', 'toolbar=no, directories=no, location=no, status=yes, menubar=no, resizable=yes, scrollbars=yes, width=450, height=400');
	newWindow.focus();
}
function setCurrentSelected( iID ) {
	var nID = document.getElementById( iID );
	if( nID != undefined )
		document.getElementById( iID ).className = "current";
}
