/*
 * Javascript functions for displaying holiday home availability.
 *
 * author:  Robert Nagajek
 */

/*
 * Submit the form.
 */
function submit() {
    document.forms.locationForm.submit();
}

/*
 * Scroll down one month.
 */
function scrollDown() {
    document.getElementById("action").value = "down";
    submit();
}

/*
 * Scroll down one month.
 */
function scrollUp() {
    document.getElementById("action").value = "up";
    submit();
}


