
$(document).ready(function(){
	// open popups where typo failed to parse the link
	$('a.external-link-new-window[target!=FEopenLink]').click(function(){
		var wh = this.target.split('x');
		window.open(this.href, "mywindow", "scrollbars=yes,menubar=0,resizable=1,width="+(wh[0]||800)+",height="+(wh[1]||600)+"");
		return false;
	});
});
