// JavaScript Document
init = function() {
    // alert("init loaded");
    // Activate drop downs in IE
    if (document.all && document.getElementById) {
        cssdropdownRoot = document.getElementById("tbl-main-menu");
        var nodes = cssdropdownRoot.childNodes[0].childNodes[0].childNodes;
        for (x = 0; x < nodes.length; x++) {
            node = nodes[x];
            if (node.nodeName == "TD") {
                node.onmouseover = function() { this.className += " over"; }
                node.onmouseout = function() { this.className = this.className.replace(" over", ""); }
            }
        }
    }
}

displayframe = function(url)
{
    var div = document.getElementById('iframepopup');
    div.className = 'showframe';
}
closeframe = function()
{
    var div = document.getElementById('iframepopup');
    div.className = 'hiddenframe';
}