function PruefPopups ()
{
	$$('.detailPopup').each (function (el)
	{ 
		el.addEvent ('click', function (e)
		{
			e = new Event(e).stop();	
			href = el.getProperty ('href');
			window.open(href, '', 'scrollbars=yes,resizable=no,menubar=no,width=800,height=600');		
		});
	});
}

window.addEvent ('load', PruefPopups);

