// JavaScript Document for tokyo hostels kyoto.com

function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }

function gotoLink(form) {
   var OptionIndex=form.ListBoxURL.selectedIndex;
   parent.location = form.ListBoxURL.options[OptionIndex].value;} 
