	function abrirExternos(){
  	var enlaces=document.getElementsByTagName('a');
    	for (var i=0;i<enlaces.length;i++){
   			//el enlace posee 'http' y no apunta a nuestro dominio
      	ref=enlaces[i].getAttribute('href');
      	
      	if((ref.indexOf("http")>-1)&&(ref.indexOf(window.location.host)==-1)){
        	enlaces[i].target="_blank";
      	}
   		}
	}
	
	window.onload= abrirExternos;
