<!--
function moveUrl(){
  var index = document.form1.maker_id.selectedIndex; 
  var url = document.form1.maker_id.options[index].value;
  if(url!=""){
    location.href=url;
  }
}

//-->