﻿function searchGoogle(a) {
    if (a == undefined || a == '') {
        a = 'q';
    }
    var c = $get(a);
    if (c && c.value.length > 0 && baseValue != c.value) {
        computeGoogleSearch(c.value);
        return false;
    }
    return true;
}

var baseValue = "> Rechercher dans le site";
function computeGoogleSearch(value) {
    var strSearch = "http://www.google.com/custom?q=";
    strSearch += value;                                                
    strSearch += "&cof=GALT%3A%2323245D%3BS%3Ahttp%3A%2F%2Fwww.mangetaville.tv%3BVLC%3A%230000DD%3BAH%3Acenter%3B"; /*LH%3A93%3B*/
    strSearch += "LC%3A%230000AA%3BL%3Ahttp%3A%2F%2Fwww.mangetaville.tv%2F_Commun%2F_images%2Flogo.jpg%3BALC%3A%230000DD%3B";  /*LW%3A175%3B*/
    strSearch += "T%3A%23000000%3BAWFID%3Afff1096d12fda30c%3B&domains=mangetaville.tv&sitesearch=mangetaville.tv";
    window.open(strSearch);
}

function PutTextMask() {
    var c = $get('q');
    if (c && c.value.length < 1) {
        c.value = baseValue;
    }
}
function ClearTextMask() {
    var c = $get('q');
    if (c && c.value == baseValue) {
        c.value = "";
    }
}

var ILbaseValue = "> Recevez l'info-lettre";
function ILPutTextMask() {
    var c = $get('ctl00_c_t_infoLettre');
    if (c && c.value.length < 1) {
        c.value = ILbaseValue;
    }
}
function ILClearTextMask() {
    var c = $get('ctl00_c_t_infoLettre');
    if (c && c.value == ILbaseValue) {
        c.value = "";
    }
}