function form1Handler()
{
   var URL = document.form1.site.options[document.form1.site.selectedIndex].value;
   window.location.href = URL;
}
function form2Handler()
{
   var URL = document.form2.site.options[document.form2.site.selectedIndex].value;
   window.location.href = URL;
}

