﻿// JavaScript Document

function fechaFlash() {
    if (document.getElementById('Flash'))
        document.getElementById('Flash').style.display = "none";
}
function ftempo() {
    setTimeout('fechaFlash()', 20000);
}
