<!--
function RollOver(imgName, imgFile) {
	document[imgName].src = "images/" + imgFile;
	return;
}						

function PreloadImages(imgarray) {
	if (document.imgarray) {
		for (var iX = 0; iX < imgarray.length; iX++) {
			var imgcache = new Image;
			imgcache.src = imgarray[iX];
		}
	}
}

function PrintReport() {
	if (window.print != null)
		window.print();
	else
		alert("Unfortunately your browser does not support this shortcut. Please select File and then Print from your browser's menu.");
}


//-->

