// Funcion document.getElementById abreviada
function $(id)
{
    return document.getElementById(id);
}
// Fin Funcion document.getElementById abreviada

// Deshabilita seleccionar texto
var omitformtags = ['input', 'textarea', 'select'];
omitformtags = omitformtags.join('|');
function disableselect(e)
{
    if (omitformtags.indexOf(e.target.tagName.toLowerCase()) == -1)
    {
        return false;
    }
}

function reEnable()
{
    return true;
}

if (typeof document.onselectstart != 'undefined')
{
    document.onselectstart = new Function('return false');
}
else
{
    document.onmousedown = disableselect;
    document.onmouseup = reEnable;
}
// Fin Deshabilita seleccionar texto

// Deshabilita boton derecho del raton
document.oncontextmenu = new Function('return false');
// Fin Deshabilita boton derecho del raton

function AlturaPagina()
{
    if ($('content'))
    {
        if (typeof window.innerHeight == 'undefined')
        {
            $('content').height = document.body.clientHeight - 190;
            $('menu').style.height = document.body.clientHeight - 190;
            $('contenido').style.height = document.body.clientHeight - 190;
            if ($('framegooglemaps'))
            {
                $('framegooglemaps').style.height = document.body.clientHeight - 215;
            }
        }
        else
        {
            $('content').height = window.innerHeight - 180;
            $('menu').style.height = window.innerHeight - 180;
            $('contenido').style.height = window.innerHeight - 180;
            if ($('framegooglemaps'))
            {
                $('framegooglemaps').style.height = window.innerHeight - 205;
            }
        }
    }
    window.onresize = AlturaPagina;
}

function fEstatus()
{
    window.status = gstrEstado;
}

window.onload = AlturaPagina;
window.onmouseover = fEstatus;
fEstatus();