
document.observe('contentloaded', function(x) {
		$$('.zooms').each(function(y) { 
			y.setStyle({ cursor: 'pointer'});
			y.observe('click', function(z) {
			window.open( "popup.htm?"+ y.firstDescendant().textContent.strip(), 
					"", 
					"resizable=1,HEIGHT=200,WIDTH=200"); 
			})	
		});
	
});