﻿

var win = null;
function mail(mypage,myname,w,h,scroll){
    LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
    TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
    settings =
    'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
    win = window.open(mypage,myname,settings);
}


/*
Highlights Current Link in Main Navigation
Eddie Foreman - October 2008 
*/

function selected(){
	if(document.getElementById("section")){
		var sec = document.getElementById("section").getAttribute("value");
		if(sec != null || sec != ""){
			if(document.getElementById("main-menu")){
				var menu = document.getElementById("main-menu").getElementsByTagName("li");
				if(sec >= 0 || sec < menu.length){
					menu[sec].className = "selectedLink";			
				}				
			}
		}
	}
}

if (window.addEventListener) window.addEventListener("load", selected, false);
else if (window.attachEvent) window.attachEvent("onload", selected);
