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