/* Copyright Display Function */
function CopyRight() {
	var now = new Date();
	var copyright = "&copy;" + now.getFullYear() + " Teleflex Incorporated";
	document.write(copyright);
}

