﻿// JScript File
var elm = null;
var y = null;
if (document.getElementById)
{
    // browser implements part of W3C DOM HTML
    // Gecko, Internet Explorer 5+, Opera 5+
    elm = document.getElementById("Authentic");
    y=document.getElementById("AuthenticSeal");
}
else if (document.all)
{
    // Internet Explorer 4 or Opera with IE user agent
    elm = document.all["Authentic"];
    y = document.all["AuthenticSeal"];
}
else if (document.layers)
{
    // Navigator 4
    elm = document.layers["Authentic"];
    y = document.layers["AuthenticSeal"];
}

if (!elm)
{
    // browser not supported or element not found
}else if(y != null)
{
    if(elm == "http://antiphishing.reasonables.com/")
    {
        y.innerHTML = "<a href=\"http://antiphishing.reasonables.com/verify.aspx\" target=_blank style=\"font-size: 10px; color: gray\"><img src=\"http://antiphishing.reasonables.com/images/verifiedsign.gif\" style=\"border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px\" /></a><br>";
        
    }else
    {        
        y.innerHTML = "<a href=\"http://antiphishing.reasonables.com/verify.aspx\" target=_blank style=\"font-size: 10px; color: gray\"><img src=\"http://antiphishing.reasonables.com/images/verifiedsign.gif\" style=\"border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px\" /></a><br>"
        +"<span style=\"font-size:8px; font-family:Arial, Helvetica, sans-serif \"><a id=\"Authentic\" href=\"http://antiphishing.reasonables.com/\" target=\"Anti-phishing\">Authentic Seal by Reasonable Anti-phishing software</a></span>";
    }
}


