
	
	function sendfriend(lan, pageurl){
	var u = escape(top.window.location.href);
	window.open('pdfpopup.html','sendfriend','width=408,height=282');
	return false;
}

function init() {
	theEmail = document.getElementById('send');
	thePrint = document.getElementById('print');
	if (theEmail) {
		theEmail.onclick = function() {
			sendfriend(this.className,this.href);
			return false;
		}
	}
	if (thePrint) {
		thePrint.onclick = function() {
			window.print();
			return false;
		}
	}
}

if (window.addEventListener) window.addEventListener("load", init, false)
else if (window.attachEvent) window.attachEvent("onload", init)
else if (document.getElementById) window.onload = init

