<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
sfhover = function() {
	if(navigator.userAgent.indexOf("Opera")==-1) {
		var l = document.getElementById("nav").getElementsByTagName("li");
		for (var i=0; i<l.length; i++) {
			l[i].onmouseover=function() {
				this.className+=" sfhover";
				var f = this.getElementsByTagName('iframe');
				if(f.length==1) {
					f[0].style.zIndex = 20000 - 1;
					f[0].style.display = "block";
					ul = this.getElementsByTagName('ul');
					if(ul.length==1) {
						f[0].style.height = ul[0].clientHeight;
						f[0].style.width = ul[0].clientWidth;
					}
				}
			}
			l[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				var f = this.getElementsByTagName('iframe');
				if(f.length==1) {
					f[0].style.zIndex = 20000 - 1;
					f[0].style.display = "none";
				}
			}
		}
	}
}

function resizeExternalIframe() {
	f = document.getElementById('frmExternal');
	if(navigator.userAgent.indexOf("Internet Explorer")==-1) {
		f.height=(document.body.clientHeight-105);
	}
	else {
		f.height=(window.innerHeight-105);
	}
	f.style.visibility="visible";
}

if (window.attachEvent) window.attachEvent("onload", sfhover);
//-->


