﻿// JScript File
function home_onload(){
    if (window.parent != null) {
        var s = new String(window.parent.location.search);
        var pos = s.indexOf('pg=');
        if (pos > 0){
            window.location = s.substr(pos + 3, s.length - pos);
        }
        else {
            page_onload();
        }
    }
}
function page_onload(){
    if (window.parent.frames.length > 0)
    {
        document.getElementById("idNoFrames").style.display = 'none';
        window.parent.document.title = document.title;
    }
}


