/**
 * @author MansonPlus
 */
new fadeshow(sample1, 241, 128, 0, 4000, 1,undefined , "cliente1")
new fadeshow(sample2, 241, 128, 0, 4000, 1,undefined , "cliente2")
new fadeshow(sample3, 241, 128, 0, 4000, 1,undefined , "cliente3")
new fadeshow(sample4, 241, 128, 0, 4000, 1,undefined , "cliente4")


var checar_correo = function (){
    var correo_malo = document.getElementById("correo").value;
    if (correo_malo){
        var json={
            correo : correo_malo
        };
        var post = JSON.stringify(json);
        //var post = 'correo='+correo_malo;
        var mandar = ajax_saveDatos(post, "ServiciosWeb/correo_negro.php")
        document.getElementById("correo").value = "";
        alert ("Su correo ha sido eliminado de las listas.");
    }
    else {
        alert ("Debe introducir una dirección de e-mail.")
    }
}