﻿function clearWatermark(control) {
    if (control.id.search("Nombre") != -1) {
        if (control.value == "Nombre") {
            control.value = ""
        } else {
            control.select()
        }
    } else if (control.id.search("Correo") != -1) {
        if (control.value == "Correo") {
            control.value = ""
        } else {
            control.select()
        }
    } else if (control.id.search("Busqueda") != -1) {
        if (control.value == "Buscar...") {
            control.value = ""
        } else {
            control.select()
        }
    }
}
function setWatermark(control) {
    if (control.value == "") {
        if (control.id.search("Nombre") != -1) {
            control.value = "Nombre"
        } else if (control.id.search("Correo") != -1) {
            control.value = "Correo"
        } else if (control.id.search("Busqueda") != -1) {
            control.value = "Buscar..."
        }
    }
}
function MostrarArchivoEnVentana(archivo) {
    opciones = "fullscreen=0, toolbar=0, location=1, status=0, menubar=0, scrollbars=1, resizable=0, width=1000, height=650, left=100, top=0";
    window.open(archivo, 'HEB', opciones, 1)
}
function showDiv(divId, menuItem) {
    //Hide all the panels.
    document.getElementById("div_Body_Datos").style.display = "none";
    document.getElementById("div_Body_Mapa").style.display = "none";

    //Show the one we're accesing.
    document.getElementById(divId).style.display = "block";

    //Clear the selected item.
    $(".selected").removeClass("selected");

    //Set the selected menu item.
    menuItem.setAttribute("class", "selected");
}
