﻿

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(){
  	var sec = document.getElementById("section").getAttribute("value");
	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);
