// JScript File
function TamVentana()
{
    var Tamanyo = [0, 0];
    if (typeof window.innerWidth != 'undefined')
    {
        Tamanyo = [
            window.innerWidth,
            window.innerHeight
        ];
    }
    else if (typeof document.documentElement != 'undefined' && typeof document.documentElement.clientWidth != 'undefined' && document.documentElement.clientWidth != 0)
    {
        Tamanyo = [
            document.documentElement.clientWidth,
            document.documentElement.clientHeight
        ];
    }
    else{
        Tamanyo = [
            document.getElementsByTagName('body')[0].clientWidth,
            document.getElementsByTagName('body')[0].clientHeight
        ];
    }
    return Tamanyo; 
}
function ShowBox()
{
    var Tam2 = TamVentana(); 
    var	obj3= document.getElementById("CapaShow001");
    obj3.style.top= (((Tam2[1]-600)/2)+document.documentElement.scrollTop)+"px";
    obj3.style.left= (((Tam2[0]-780)/2)+document.documentElement.scrollLeft)+"px";
    obj3.style.visibility="visible";
}
function OcultarCapaOscura()
{
    var	obj1= document.getElementById("TD_Show001");
    var	obj3= document.getElementById("CapaShow001");
    obj1.innerHTML="";
    obj3.style.display="none";
}
function MostrarFlash()
{
    setTimeout("ShowBox();",5000);
}