function reLink(link) { 
    window.location.href = link; 
}



function externalLinks() {
	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.getAttribute("rel") == "external nofollow" || 
			anchor.getAttribute("rel") == "nofollow external" )
			)
		anchor.target = "_blank";
	}
}

window.onload = function() {
	externalLinks();
}

function addbookmark(){
	url="http://www.arribilak.net";
	title="ArriBilaK.net - Los mejores juegos y videos de la red";
	if (window.sidebar){ window.sidebar.addPanel(title, url, "");}
	else if(window.external){window.external.AddFavorite(url, title);}
}
