//<script>
function CellColorMouseOver(vobjEle) {
	vobjEle.style.backgroundColor='#919191';
	vobjEle.style.cursor='hand';

}
function aCellColorMouseOver(vobjEle) {
	vobjEle.style.backgroundColor='#FFFFCC';
	vobjEle.style.cursor='hand';
}

function CellColorMouseOut(vobjEle) {
	vobjEle.style.backgroundColor='';
}

function GalleryColorMouseOver(vobjEle) {
if (vobjEle.childNodes) {
	vobjEle.style.backgroundColor='#5A5A5A';
	//vobjEle.style.color='#333333';
	vobjEle.style.cursor='hand';
	//vobjEle.childNodes[0].style.color="#333333";
	}
}

function GalleryColorMouseOut(vobjEle) {
if (vobjEle.childNodes) {
	vobjEle.style.backgroundColor="";
	//vobjEle.style.color="";
	//vobjEle.childNodes[0].style.color="";
	}
}
function OpenTopPage(vstrPage) {
	// Open new page
	window.top.location.href=vstrPage;
}
	
function NavigationKeyCapture() {

	if (window.top.PhotoIndex) {
	
		// 37 - previous
		if (event.keyCode ==37){
			window.top.PhotoIndex.PrevPhoto();
		}
			
		// 39 - next
		if (event.keyCode ==39){
			window.top.PhotoIndex.NextPhoto();
		}
	}
}
