// JavaScript Document

function rollOver(graphicName,status,rollOverSource){
	document.images[graphicName].src = rollOverSource+"images/template/"+graphicName+"-"+status+".gif"; 
}

function subOver(table) {
   table.style.backgroundColor="#FFFFFF";  
}
  
function subOut(table) {
   table.style.backgroundColor="#CCCCCC";
}

function doPopup(popPage)  {
	newWindow = window.open(popPage, 'newWin', 'width=350,height=300,left=0,top=0,toolbar=0,status=0,scrollbars=1,resizable=0');
}
function closePopup(){
	stopPopup();
	window.close();
}
function popup_video(src) {
	var videoSrc = src;
	
	window.open("iframes/video-display.htm?src=" + videoSrc, 'KaleidoscopeEvents', 'status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=0,width=320,height=255');
	return false;
}