window.onload = rollOverInit;


		function rollOverInit() {

			for (var i=0; i<document.images.length; i++) {

				if (document.images[i].parentNode.tagName == "A") {

					setupRollOver(document.images[i]);

				}

			}

		}

		function setupRollOver(thisImage) {

			thisImage.outImage = new Image();

			thisImage.outImage.src = thisImage.src;

			thisImage.onmouseout = rollOut;

	
			thisImage.overImage = new Image();

			thisImage.overImage.src = "images/" + thisImage.id + "hover.png";

			thisImage.onmouseover = rollOver;

		}

		function rollOver() {

			this.src = this.overImage.src;

		}

		function rollOut() {

			this.src = this.outImage.src;

		}


addOnload(newWinLinks);


function addOnload(newFunction) {

	var oldOnload = window.onload;


	if (typeof oldOnload == "function") {

		window.onload = function() {

			if (oldOnload) {

				oldOnload();

			}

			newFunction();

		}

	}

	else {

		window.onload = newFunction;

	}

}


		function newWinLinks() {

			for (var i=0; i<document.links.length; i++) {

				if (document.links[i].className == "newWin") {

					document.links[i].onclick = newWindow;

				}

			}

		}

		function newWindow() {

			var tipsWindow = window.open("printertips.html",

			"tipsWin", "scrollbars,toolbar,menubar=yes,resizable=no");

			return false;

		}