/* author: Raphaela Archon */
/* creation date: 11/25/2001 */
function navigator2(formName,popupName,target) 
	{
	var popup = document[formName].elements[popupName];
	if (popup.options[popup.selectedIndex].value != "") 
	{
		window.open(popup.options[popup.selectedIndex].value, target);
		popup.selectedIndex=0;
	}
}

function formHandler(listnumber){
var URL = document.myform.elements[listnumber].options[document.myform.elements[listnumber].selectedIndex].value;
window.location.href = URL;
}

