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