// JavaScript Document



function printThisPageEvoke() {
	window.open("/info/print_template_evoke.html", "mywindow","location=0,status=0,scrollbars=1, width=650,height=800");
	return false;
}

function initEvoke() {
	if(document.getElementById('siteUtilitiesArea')) {
		parentObj = document.getElementById('siteUtilitiesArea');
		parentObj.getElementsByTagName("a")[1].onclick = function() { printThisPageEvoke(); return false; };
	}
}

function addWindowEvent(eventName, func) {
	if (window.attachEvent) {
		window.attachEvent("on" + eventName, func);
	} else {
		window.addEventListener(eventName, func, false);
	}
}
addWindowEvent("load", initEvoke);