/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


       /* Este Script es para capturar la url actual y así
          Validar Nivel Triple-A de Conformidad */

function setWaiTag(){
var urix = top.location.href;
var text2 = 'http://www.tawdis.net/tawdis/online?url='+urix;
document.write('<a href="'+text2+'" title="Validar Nivel Triple-A de Conformidad" target="_blank">WAI-AAA</a>');
}

function setIframeTransparente(){
    var iframe = document.getElementsByTagName("iframe");

    for (var i=0; i<iframe.length; i++){
        if (iframe[i].className == "transparente" || iframe[i].className == ""){
            if (navigator.appName=="Microsoft Internet Explorer") {
                iframe[i].setAttribute("style", "opacity:0.5;");
                iframe[i].style.setAttribute("filter", "alpha(opacity=75);")
                break;
            } else {
                iframe[i].setAttribute("style", "opacity:1;");
                iframe[i].style.setAttribute("filter", "alpha(opacity=75);")
            }
        }
    }
}