function gotodept(){
	if(event.srcElement.value == "na"){
		
	} else {
		window.open(event.srcElement.value, 'NewWindow');
	}
}
function gotodept2(){
	if(event.srcElement.value == "na"){
		
	} else {
		window.top.document.location = event.srcElement.value;
	}
}

function openKeyWin(URL){
	windowSize = "top=50, left=" + screen.width/4 + ", height=" + screen.height * 0.8 + ", width=550, toolbar=0, menubar=0, location=0, scrollbars=yes, resizable=yes";
	mainWindow = window.open(URL, 'KeyWindow', windowSize);
	mainWindow.focus();
}

function openPrintWin(URL){
	windowSize = "top=0, left=" + screen.width/4 + ", height=" + screen.height *0.94 + ", width=650, toolbar=0, menubar=0, location=0, scrollbars=yes, resizable=yes";
	mainWindow = window.open(URL, 'PrintWindow', windowSize);
	mainWindow.focus();
}

totalPicNum = 5;
selectPic = Math.round(Math.random()*totalPicNum)+1;
picFileName = "headerflash"+selectPic+".jpg";