
/* - bgmount.js - */
// http://www.bulgarian-mountains.com/portal_javascripts/bgmount.js?original=1
function updateHotelCategories(){var categoryValue=document.getElementById("hotel_category0").value;$.ajax({url:'getHotelsForMountain',data:{mountainID:escape(categoryValue)},success: function(data){results=data.split("\n");document.getElementById("hotel_category1").options.length=0;for(i=0;i<results.length;i+=1){line=results[i].split(",")
document.getElementById("hotel_category1").options[i]=new Option(line[0],line[1])}}})}
function redirectToHotel(){var mountain=document.getElementById("hotel_category0").value;var hut=document.getElementById("hotel_category1").value;var newURL=document.location.href+"/Hotels/"+mountain+"/"+hut;window.location.replace(newURL)}
function updateCategories(){var categoryValue=document.getElementById("category0").value;$.ajax({url:'getHutsForMountain',data:{mountainID:escape(categoryValue)},success: function(data){results=data.split("\n");document.getElementById("category1").options.length=0;for(i=0;i<results.length;i+=1){line=results[i].split(",")
document.getElementById("category1").options[i]=new Option(line[0],line[1])}}})}
function redirectToHut(){var mountain=document.getElementById("category0").value;var hut=document.getElementById("category1").value;var newURL=document.location.href+"/Huts/"+mountain+"/"+hut;window.location.replace(newURL)}


