﻿<!--//--><![CDATA[//><!--

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navigation");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" hover";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" hover", "");
				}
			}
		}
		
	}
}
window.onload=startList;

//--><!]]>


function submenuOver(obj)
{
    obj.style.background='#ffffff';
}

function submenuOut(obj)
{
    obj.style.background='';
}

function openEngines(url)
{
    var pop = window.open(url,'','scrollbars=yes,width=972,height=683');
    pop.moveTo((screen.width - 972) / 2,(screen.height - 683) / 2);
}

function openWin(url, width, height)
{
    var pop = window.open(url,'','scrollbars=yes,width=' + width + ',height=' + height);
    pop.moveTo((screen.width - width) / 2,(screen.height - height) / 2);
}

function fitIFrame()
{   
    var height = document.getElementById("ifrContent").contentWindow.document.body.scrollHeight;
                
    document.getElementById("ifrContent").style.height  = height + "px";   
}

function fitIFrameServer()
{   
    var height = document.getElementById("ctl00_ctl00_cphLeft_cphLeft_ifrContent").contentWindow.document.body.scrollHeight;
                
    document.getElementById("ctl00_ctl00_cphLeft_cphLeft_ifrContent").style.height  = height + "px";   
}