function underLineLink(linkObj){linkObj.style.textDecoration = "underline";}
function deUnderLineLink(linkObj){linkObj.style.textDecoration = "none";}
function loadAPage(lObj){
	URL = lObj.options[lObj.selectedIndex].value;
	window.location = URL;
}