window.onload=function(){
for (i=0;i<document.getElementsByTagName("a").length;i++){
	g=window.location;
	v=document.getElementsByTagName("a")[i];
	if (v.href){
		if (v.hostname.toString().indexOf(g.hostname.toString())==-1){
		v.className="newwindow";
		}
	}
}
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
	var anchor = anchors[i];
	if (anchor.getAttribute("href") && anchor.className == "newwindow")
		anchor.target = "_blank";
}
}