// Create by Siclex //
// Author : Juana García //
// javaScripts for document html suspend-acct.html //

function changeLang() {
    var x = document.getElementById("p1");
    var y = document.getElementById("idioma");
    var x1 = document.getElementById("p2");
    if (y.innerHTML === "English") {
        x.innerHTML = "This is an automated message";
        x1.innerHTML = "Dear customer your platform has a problem, Please contact us at <a href='mailto:cobros@sicflex.com'>cobros@sicflex.com</a>. In the same way we inform you that Due to the COVID-19 pandemic, our offices are securely closed."
        y.innerHTML = "Español"
    } else {
        x.innerHTML = "Este es un mensaje automatizado";
        x1.innerHTML = "Estimado Cliente su plataforma presenta problema, favor contactarnos al correo <a href='mailto:cobros@sicflex.com'>cobros@sicflex.com</a>. De igual manera les informamos que a razón del COVID-19 nuestras oficinas estan temporalmente cerradas." 
        y.innerHTML = "English"
    }
}
function changeLangList() {
    var x = document.getElementById("p1");
    var y = document.getElementById("selectList").value;
    var y1 = document.getElementById("labelList");
    var x1 = document.getElementById("p2");
    if (y === "English") {
        x.innerHTML = "This is an automated message";
        x1.innerHTML = "Dear customer your platform has a problem, Please contact us at <a href='mailto:cobros@sicflex.com'>cobros@sicflex.com</a>. In the same way we inform you that Due to the COVID-19 pandemic, our offices are securely closed."
        y1.innerHTML = "Select your language"
    } else if (y === "Español") {
        x.innerHTML = "Este es un mensaje automatizado";
        x1.innerHTML = "Estimado Cliente su plataforma presenta problema, favor contactarnos al correo <a href='mailto:cobros@sicflex.com'>cobros@sicflex.com</a>. De igual manera les informamos que a razón del COVID-19 nuestras oficinas estan temporalmente cerradas." 
        y1.innerHTML = "Seleccione su idioma"
    } else {
        x.innerHTML = "Ceci est un message automatisé";
        x1.innerHTML = "Cher client, votre plateforme a un problème, veuillez nous contacter par email <a href='mailto:cobros@sicflex.com'>cobros@sicflex.com</a>. De même, nous vous informons qu'en raison de COVID-19, nos bureaux sont temporairement fermés." 
        y1.innerHTML = "Choisissez votre langue"
    }
}