﻿function noPostBack(sNewFormAction) {
    
    document.forms[0].action = sNewFormAction;
    document.forms[0].__VIEWSTATE.name = 'NOVIEWSTATE';    
}


/* Photo Search */
function UpdateDisplay() {

        if (document.getElementById("cbAllPhotos").checked) {
            document.getElementById("fromDate").style.display = "none";
            document.getElementById("toDate").style.display = "none";
        } else {
            document.getElementById("fromDate").style.display = "block";
            document.getElementById("toDate").style.display = "block";
        }
        
    }

    function ReloadContinents() {
        var continentId = document.getElementById("sContinents").value;

        window.location = "Photo_Search.aspx?c=" + continentId;
    }

    function ReloadRegions() {
        var continentId = document.getElementById("sContinents").value;
        var regionId = document.getElementById("sRegions").value;
        
        window.location = "Photo_Search.aspx?c=" + continentId + "&r=" + regionId;
    }

    function ReloadSpots() {
        var continentId = document.getElementById("sContinents").value;
        var regionId = document.getElementById("sRegions").value;
        var spotId = document.getElementById("sSpots").value;

        window.location = "Photo_Search.aspx?c=" + continentId + "&r=" + regionId + "&s=" + spotId;
    }



