<!--
var toUrl;

function Jumpto() {
  toUrl = document.sm.elements['sm_jump'].options[document.sm.elements['sm_jump'].selectedIndex].value;
  if( toUrl != '' ) {
    if( toUrl == '/products/recept_journal.html' ){
        OpenLink(toUrl);
    }else if( toUrl == 'http://6829.teacup.com/autex/shop' ){
        OpenLink(toUrl);
    }else {
        location.href = toUrl;
    }
  }else {
    //alert('移動先のページを選んで下さい。');
  }
}

function OpenLink(url){
     window.open(url,"","");
}
// -->

