<!--
//start populating the array that holds all the mast head images
myPix = new Array("images/ECA_Mast001.gif", "images/ECA_Mast002.gif");
//find the length of the array
imgCt = myPix.length;

//do the function for changing the pic
function choosePic() {
	if (document.images) {
			randomNum = Math.floor((Math.random()*imgCt));
			document.myPicture.src=myPix[randomNum];
	}
}

//do the function for popping up a new window
function newWindow(pic) {
		myWindow = window.open(pic,"myWin","width=450,height=350,scrollbars=yes");
		myWindow.focus();
}
//-->
