function englishPage(theID) {
	ALTContent = window.open('/alternateContent.asp?view=alternate&id=' + theID,'englishContent','resizable=yes,scrollbars=yes,width=400,height=500');
	if(window.focus){ALTContent.focus()}
}

//------------------------------------------------------------------------------------
// Function to activate tr on hover
//------------------------------------------------------------------------------------
function changeTo(source) {
	var highlightcolor = '#EEEEEE';
	//source=event.srcElement;
	
	while(source.tagName!="TR")
		source=source.parentNode;
		
	if (source.style.backgroundColor!=highlightcolor&&source.id!="ignore")
		source.style.backgroundColor=highlightcolor;
}

function changeBack(source){
	var originalcolor = '#D4D3B7';
	
	while(source.tagName!="TR")
		source=source.parentNode;
		
	if (source.style.backgroundColor!=originalcolor&&source.id!="ignore")
		source.style.backgroundColor=originalcolor;
}
