/*
 2011-09-15
*/

$(document).ready(function () {
	$('.rssagg').click(function(event) {
		var openURL = $(this).attr('href'),
		openWindowName = 'bookmark_popup',
		openWindowFeatures = 'left='+((window.screenX||window.screenLeft)+10)+',top='
			+((window.screenY||window.screenTop)+10)+',height=450px,width=620px,scrollbars=1,resizable=1,alwaysRaised=1';
		open(openURL,openWindowName,openWindowFeatures);
		event.preventDefault();
	});
});
