/**
 * @author Jorge Vega: Merkatu Intractiva
 */

function enlacesExternos(){
	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")=="externo"){
			anchor.target = "_blank";
		}
	}
	
}

function lanzarSerie(idioma, seccion, tipo, contenido) {
	var cadena="index.php?idioma="+idioma+"&seccion="+seccion+"&ctipo="+tipo+"&contenido="+contenido+"";
	var indice = document.form1.serie.selectedIndex;
	var serie = document.form1.serie.options[indice].value;
	document.location=cadena+"&serie="+serie+"";
		
}

function lanzarGrupo(idioma, seccion, tipo, contenido, serie) {	
	var cadena="index.php?idioma="+idioma+"&seccion="+seccion+"&ctipo="+tipo+"&contenido="+contenido+"";
	var indice = document.form2.producto.selectedIndex;
	var producto = document.form2.producto.options[indice].value;
	document.location=cadena+"&producto="+producto+"&serie="+serie+"";
		
}

window.onload = enlacesExternos;
