<!--
/*** ALLOW target=_blank" in STRICT Doctype ****/
$(function() 
{
	$('a[rel*=_blank]').click( function() 
	{
		window.open(this.href);
		return false;
	});
	
});
