//not in use

function GetImage(strPath) {
	
	var intNumImages = 3;
	var intRandomNum = Math.floor(Math.random() * intNumImages) + 1;

	document.write("<img src=\"" + strPath + "ImageStrip_" + intRandomNum + ".jpg" + "\" alt=\"\" width=\"596\" height=\"111\">");
}

function setImageStrip(strPath) {
	var intNumImages = 3;
	var intRandomNum = Math.floor(Math.random() * intNumImages) + 1;
	document.imageStrip.src = strPath + "imageStrip_" + intRandomNum + ".jpg";
	
}