window.onload=function(){enableTooltips()};

function postjump(postcode){
  if (postcode.length==7){ 
    location.href = "/delivery/detail.aspx?zip=" + postcode;
    //alert("http://www.you-shoku.net/delivery/detail.aspx?zip=" + postcode);
  }else{
    //alert("郵便番号は7桁の数字をいれてください");
  }
}

