function currency_calculator() {
    Shadowbox.open({
        content: '<div style="background-color: #ffffff; height: 350px; overflow: hidden"><iframe src="/modules/currency/main.php" style="overflow: auto; height: 350px; width: 100%; border: none"></iframe></div>',
        player: "html",
        title: "Пересчет валют",
        height: 350,
        width: 350
    });
}

function currency_history() {
    Shadowbox.open({
        content: '<div style="background-color: #ffffff; height: 350px; overflow: hidden"><iframe src="/modules/currency/history.php" style="overflow: auto; height: 350px; width: 100%; border: none"></iframe></div>',
        player: "html",
        title: "История курса валют",
        height: 350,
        width: 350
    });
}

function guestbook_validate() {
    var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;

    if (document.getElementById('name').value.replace(/\s/g, "") == "") {
        alert('Укажите свое имя');
        return false;
    }

    if (document.getElementById('mail').value.replace(/\s/g, "") == "") {
        alert('Укажите свой e-mail');
        return false;
    }

    if (reg.test(document.getElementById('mail').value) == false) {
        alert('Неправильный e-mail');
        return false;
    }

    if (document.getElementById('review').value.replace(/\s/g, "") == "") {
        alert('Введите текст сообщения');
        return false;
    }
    return true;
}
