/**
 * Standars compliant way to make links with ref="external" to be opened in new window
 */
window.onload=function(){
	$$('a[rel=external]').each(
	function( lnk ){
		lnk.setAttribute( "target", "_blank" );
	});
};
