$(document).ready(function() {
	$(".popup").click(function() {
	var url=$(this).attr("href");
	url=encodeURI(url);
	var rel=$(this).attr("rel");
	if(rel){
		rel="status = 1, "+ rel +", resizable = 0";
		}else{
			rel="status = 1, height = 450, width = 600, resizable = 0";
			}

	window.open(url, 'myWindow', rel )
	return false;
	});
})
