function xhtmlFlash( swf, width, height ) 
{	
  document.writeln('<object'); 
  document.writeln('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"');
  document.writeln('width="' + width + '"');
  document.writeln('height="' + height + '">');
  document.writeln('<param name="movie" value="' + swf + '">');
  document.writeln('<param name="menu" value="false">');
  document.writeln('<embed ');
  document.writeln('pluginspage="https://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" '); 
  document.writeln('width="' + width + '" ');
  document.writeln('height="' + height + '" ');
  document.writeln('menu="false" ');
  document.writeln('src="' + swf + '">');
  document.writeln('</embed>');
  document.writeln('</object>');
}

function externaliseLinks() { 
	if (!document.getElementsByTagName) 
	{	
		return;
	}

	var anchors = document.getElementsByTagName("a"); 
	for ( var i=0; i<anchors.length; i++ ) 
	{ 
		var anchor = anchors[i]; 
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
		{
			anchor.target = "_blank"; 
		}
	} 
} 

window.onload = externaliseLinks;
