/*
	URL Jump Handling for DropDown List
	
	author: Damian Heini
	last modyfied: 2 march 2007

*/

function loadPage(elID) {
	var myEl = document.getElementById(elID);
	// get selection
	newLink = myEl.selector99.value;
	// do not change site, if spacer site is chosen. 
	if(newLink != '') {
		location = newLink;
	}
}

function loadPageInPopUp(elID,popUpParams) {
	var myEl = document.getElementById(elID);
	// get selection
	newLink = myEl.selector99.value;
	// do not change site, if spacer site is chosen. 
	if(newLink != '') {
		window.open(newLink,popUpParams);
	}
}