<!--//
//RollOver Images

if (document.images) {
		btn001on = new Image();   btn001on.src = "img/puf_btn002_hi.gif";
		btn002on = new Image();   btn002on.src = "img/puf_btn002_hi.gif";
		btn003on = new Image();   btn003on.src = "img/puf_btn003_hi.gif";
		btn102on = new Image();   btn102on.src = "img/puf_btn002_hi.gif";

		btn001off = new Image();   btn001off.src = "img/puf_btn001_lo.gif";
		btn002off = new Image();   btn002off.src = "img/puf_btn002_lo.gif";
		btn003off = new Image();   btn003off.src = "img/puf_btn003_lo.gif";
		btn102off = new Image();   btn102off.src = "img/puf_btn002_lo.gif";
}

function imgOn(imgName) {
		if (document.images) {
				document[imgName].src = eval(imgName + "on.src");
		}
}

function imgOff(imgName) {
		if (document.images) {
				document[imgName].src = eval(imgName + "off.src");
		}
}

function imgOn2(imgName) {
		if (document.images) {
				document[imgName].src = eval("btn102on.src");
		}
}

function imgOff2(imgName) {
		if (document.images) {
				document[imgName].src = eval("btn102off.src");
		}
}

//-->
