// JavaScript Document


function showPage(selectObject){
var URLValue =
document.getElementById(selectObject).options[document.getElementById(selectObject).selectedIndex].value
if (URLValue){
top.location.href = URLValue;
}
}

