function openNewWindow(URLtoOpen) {
    newWindow=window.open(URLtoOpen, "map","height="+(615)+",width="+815+",toolbar=no,scrollbars=no,menubar=no,resizable=no");
}
function openNewWindowXY(URLtoOpen, width, height) {
    newWindow=window.open(URLtoOpen, "map","height="+(height+25)+",width="+width+",toolbar=no,scrollbars=no,menubar=no,resizable=no");
}

window.onload=function(){
    if(!NiftyCheck())
        return;
    Rounded("div#footer","#ffffff","#ffff00");
    Rounded("div#header","#ffffff","#ffff00");

    if (document.all&&document.getElementById) {
        navRoot = document.getElementById("nav");
        for (i=0; i<navRoot.childNodes.length; i++) {
            node = navRoot.childNodes[i];
            if (node.nodeName=="LI") {
                node.onmouseover=function() {
                    this.className+="over";
                }
                node.onmouseout=function() {
                    this.className=this.className.replace("over", "");
                }
            }
        }
    }
}
