<!--
//
function goToPage1(){
PageIndex1=document.form1.select1.selectedIndex
if (document.form1.select1.options[PageIndex1].value != "none")
{
location = document.form1.select1.options[PageIndex1].value
}
}
function goToPage2(){
PageIndex2=document.form2.select2.selectedIndex
if (document.form2.select2.options[PageIndex2].value != "none")
{
location =document.form2.select2.options[PageIndex2].value
}
}
//-->
