$(document).ready(function(){
	$('a.popup').click(function(){
		var prop = $(this).attr('rel').split(',');
		window.open($(this).attr('href'), 'popup', 'width='+prop[0]+',height='+prop[1]);
		return false;
	});
});