window.onload = setOnLink;

function setOnLink(){
	var a = document.getElementById('topNav').getElementsByTagName("A");
    setOn(a);
	var b = document.getElementById('bottomNav').getElementsByTagName("A");
	setOn(b);
}

function setOn(a) {
	for (var i = 0; i < a.length; i++) {
        if (a[i].href == window.location.href.split("#")[0]) {
			a[i].className = 'on';
		}
	}
}

function openWin(p) {
	aWindow=window.open(p,'Popup_Window','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=400,height=200');
}