﻿// A cross browser getElementById. 
if(document.all && !document.getElementById) {
    document.getElementById = function(id) {
        return document.all[id]
    }
}

function ShowHideByID(id)
{

    if (document.getElementById)
    { 
        obj = document.getElementById(id); 
        if (obj.style.display == "none")
        { 
            obj.style.display = "block"; 
        } else { 
            obj.style.display = "none"; 
        } 
    } 
}

function ShowByID(id)
{

    if (document.getElementById)
    { 
        obj = document.getElementById(id); 
        obj.style.display = "block"; 
    } 
} 

function HideByID(id)
{

    if (document.getElementById)
    { 
        obj = document.getElementById(id); 
        obj.style.display = "none"; 
    } 
} 

// This function is called by the CameraTour.aspx Page to display the cameras for the
// selected retion. 
function pop_CameraTours(url)
{
    var winProps = "width=840,height=700,scrollbars=yes,toolbar=no,status=yes,resizable=yes";
    window.open(url,'CameraTour',winProps);
}

function newWin(url,winName)
{
    //var winProps = "width=840,height=700,scrollbars=yes,toolbar=yes,status=yes,resizable=yes";
    window.open(url,winName);
}