$(document).ready(function(){
	$(".pop").each(function(){
		$(this).attr({"rel": $(this).attr("href")});
		$(this).attr({"href": "javascript:void(0)"});
		$(this).click(function(){
			window.open($(this).attr("rel"), "popup", "width=316,height=600,toolbar=no,scrollbars=yes");
		});
	});
	$(".pop2").each(function(){
		$(this).attr({"rel": $(this).attr("href")});
		$(this).attr({"href": "javascript:void(0)"});
		$(this).click(function(){
			window.open($(this).attr("rel"), "popup", "width=616,height=420,toolbar=no");
		});
	});
	$(".pop3").each(function(){
		$(this).attr({"rel": $(this).attr("href")});
		$(this).attr({"href": "javascript:void(0)"});
		$(this).click(function(){
			window.open($(this).attr("rel"), "popup", "width=583,height=600,toolbar=no,scrollbars=yes");
		});
	});
});