$(function() {
	var newWindowID_d = new Date();
	var newWindowID_t = newWindowID_d.getTime();
	var newWindowID = "nw"+Math.ceil((Math.random()*newWindowID_t)/(Math.random()*10000))
	
	$("a").each(function() {
		var title = String($(this).attr("title"))
		if(title.indexOf("New Window: ")==0) {
			var newtitle = title.substr(String("New Window: ").length)
			$(this).click(function() { var newwin = window.open($(this).attr("href"),newWindowID); newwin.focus(); return false; }).attr("title",newtitle)
		}
	})
	
})