function init()
{
	if(document.getElementsByTagName)
	{
		var anchors=document.getElementsByTagName("a")
		for(var i=0;i<anchors.length;i++)
			if(anchors[i].getAttribute("rel")=="external")
				anchors[i].target="_blank";
	}
}
window.onload=init