/**
 * Window onload function that transform all link elements with rel attribute
 * "external" in link to "_blank" frame.
 *
 * To be XHTML Strict compatible, source code must not content link with target.
 * So, to simulate target to "_blank" frame attribute, you should use this script.
 * Just call this script in a script tag.
 *
 * @author Loops <pierrot at nvision dot lu>
 */
 
jQuery(document).ready( function(){ jQuery('a[rel*=external]').attr( 'target' , '_blank' ); } );