$(function(){
	$("a[rel=window]").click(function(){
		var url = $(this).attr("href");
		window.open(url,"","");
		return false;
	});
})
