window.addEvent('domready', function() {
	function popUp(url, name, width, height)
	{
		window.open (url, name, 'status=1,toolbar=1,location=1,menubar=1,resizable=1,scrollbars=1,width='+width+',height='+height);
	}
	
	// add popup link to all appropirate anchors
	$$('li.printlink a').each(function(item) {
		item.addEvent('click', function(ev) {
			new Event(ev).stop(); // cancel click event
			popUp(this.getProperty('href'), 'printPopup', 800, 600);
		});
	}); 
})
