// intended only for sites that cannot understand CTI's template XML (like the blogs)
function emailPage(elems, width, height) {
	$$(elems).each(function(elem) {
		elem.addEvent('click', function(event) {
			event.preventDefault();
			var width = (width) ? width: '520';
			var height = (height) ? height: '450';
			var pageURL = (window != top) ? document.referrer : location.href;
			window.open(elem.get('href') + '?title=' + escape(document.title) + '&url=' + escape(pageURL), 'printWindow', 'width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1');
		});
	});
}
window.addEvent('domready', function() {
	emailPage('.emailPage');
});