﻿// JScript File
function setAnyLocation()
{
    var chknorth = document.getElementById("chkLocation_1");
    var chkwest = document.getElementById("chkLocation_2");
    var chkski = document.getElementById("chkLocation_3");
    chknorth.checked = false;
    chkwest.checked = false;
    chkski.checked = false;
}
function setLocation()
{
    var chkany = document.getElementById("chkLocation_0");
    chkany.checked = false;
}
