﻿// Buscador Google
function GooglePonerMarcaDeAgua(IdCajaTexto) {
    if (document.getElementById(IdCajaTexto).value.length==0) {
        document.getElementById(IdCajaTexto).style.backgroundImage="url(/Images/GoogleWaterMark.gif)";
    }
}
function GoogleQuitarMarcaDeAgua(IdCajaTexto) {
    document.getElementById(IdCajaTexto).style.backgroundImage="none";
}
// Buscador Google

