﻿// JScript File

function ToggleLayer(LayerName) {
    // shows or hides Refine Search Form    
    if (document.getElementById(LayerName).style.display == 'none' || document.getElementById(LayerName).style.display == '') {
        document.getElementById(LayerName).style.display = 'block'
    } else {
        document.getElementById(LayerName).style.display = 'none'
    }
}

function openscorecard(URL)
{
    window.open(URL,'ScorecardWindow','width=600,height=400,scrollbars=yes,resizable=yes')
}

function openmap(URL)
{
    window.open(URL,'MapWindow','width=600,height=400,scrollbars=yes,resizable=yes')
}

function openweather(URL)
{
    window.open(URL,'WeatherWindow','width=600,height=400,scrollbars=yes,resizable=yes')
}