function actdesplegable(nombre,valor)
{
	for (var i=0;i<eval('document.getElementById("formu").'+nombre+'.length');i++)
	{
		  if (eval('document.getElementById("formu").'+nombre+'.options[i].value')==valor)
          {eval('document.getElementById("formu").'+nombre+'.selectedIndex=i');break}
	}
}

$(document).ready(function(){
	$("a").each(function() {
		if ($(this).attr("class")=='popup' || $(this).attr("href").substring(0,4)=='http') {
			$(this).attr("target","_blank");
			if ($(this).attr("title")) $(this).attr("title",$(this).attr("title")+" (abre en nueva ventana)");
			else $(this).attr("title","");
		}
	})
});
