<!-- Replacement image ALT text function for DBCT 7X Logo

function changeto(highlightcolor){
source=event.srcElement
if (source.tagName=="tr"||source.tagName=="table")
return
while(source.tagName!="td")
source=source.parentElement
if (source.style.backgroundColor!=highlightcolor&&source.id!="ignore")
source.style.backgroundColor=highlightcolor
}

function changeback(originalcolor){
if (event.fromElement.contains(event.toElement)||source.contains(event.toElement)||source.id=="ignore")
return
if (event.toElement!=source)
source.style.backgroundColor=originalcolor
}

<!-- Header Image Rotation

function RotateImage() {
	var result = Math.round(Math.random()*7);
	if (result == 0) {
		result = 7;
	}
	image_path = '/images/header/rotate/image' + result + '.jpg';
	document.images.rotating_image.src = image_path;
}

function RotateLeft() {
	var result = Math.round(Math.random()*13);
	if (result == 0) {
		result = 13;
	}
	image_path = '/images/leftNav/rotate/image' + result + '.jpg';
	document.images.rotating_left.src = image_path;
}
// --> End


<!-- Gallery PopUp Window
var screenWidth = screen.availWidth;

if (screenWidth <= 800){
		var winWidth = 520;
		var winHeight = 360;
	}
else
	{
	var myWidth = (screenWidth - 700)*.5 ;
	var winHeight = 360;
	var winWidth = 520;
	}

function popUp(winName,newURL) {
newWindow = window.open("","newWindow","height="+winHeight+",innerHeight="+winHeight+",width="+winWidth+",innerWidth="+winWidth+",left="+myWidth+",screenX="+myWidth+",top=0,screenY=0,resizable");
		
	if (newWindow && newWindow.open && !newWindow.closed) newWindow.location.href = newURL;
	newWindow.focus();	
}
// --> End