//if(top.location!=self.location) top.location=self.location;

document.observe('dom:loaded', function() {

	$$('a.tarifrechner').each(function(e) {
		e.observe("click",function() {
			var id=e.id;
			var url="http://www.gutguenstigversichert.de/tarifrechner/tarifrechner.php?ID="+id+"&source=TOPLINE";
			open(url,"TR","width=650px, height=600px, scrollbars=yes");
		});
	});

});


