function NavBar( tableCellRef, hoverFlag ) {
	  if ( hoverFlag ) {
		  tableCellRef.style.backgroundColor = '#FFFFFF';
	  } else {
		  tableCellRef.style.backgroundColor = '#B9C9DA';
	  }
  }

function NavBarClick( tableCellRef, url) {
	NavBar( tableCellRef, 0);
	window.location.href = url;
}

function thumbchange( imageRef, hoverFlag ) {
	  if ( hoverFlag ) {
		  imageRef.style.borderColor = '#ffff00';
	  } else {
		  imageRef.style.borderColor = '#000000';
	  }
  }

function thumbdown( url ) {
	 parent.frames['gallerywindow'].location.href = url;
}