﻿// JScript File
function obfuscate(name, domain, root)
{
    document.write("<");document.write("a");document.write(" ");document.write("h");document.write("r");document.write("e");document.write("f");document.write("=");document.write("'");document.write("m");document.write("a");document.write("i");document.write("l");document.write("t");document.write("o");document.write(":");
    document.write(name);
    document.write(String.fromCharCode(64));
    document.write(domain);
    document.write(".");
    document.write(root);
    document.write("'");document.write(">");
    document.write(name);
    document.write(String.fromCharCode(64));
    document.write(domain);
    document.write(".");
    document.write(root);
    document.write("<");document.write("/");document.write("a");document.write(">");
}

function homePrettyStyleCorrection() {
    if (navigator.appVersion.indexOf("MSIE")!=-1) {
       var temp=navigator.appVersion.split("MSIE");
       var version=parseFloat(temp[1]);  
       if (version<7) {
            var flashContainer = document.getElementById('flashcontent');
            flashContainer.className='iePrettyFix';	
        }   
    }
       
}


