$(document).ready(function() {
		$('a[@rel=popup]').click(function() {
			opts = $(this).attr('opts') || "width=445,height=215,scrollbars,resizable";
			newwindow=window.open($(this).attr('href'),"", opts);
			if (!newwindow.opener) newwindow.opener = self;
			if (window.focus) {newwindow.focus()}
			return false;
		});
});

