<!--
function gotoURL() {
  var Current =
    document.form1.style1.selectedIndex;
  window.location.href =
  document.form1.style1.options[Current].value;
  return false;
}
function gotoURL2() {
  var Current =
    document.form2.collection1.selectedIndex;
  window.location.href =
  document.form2.collection1.options[Current].value;
  return false;
}
//-->
