﻿// JScript 檔

var t=0;
var tShow=4;
var height=98;

function showLogo()
{

    if (t<tShow)
        {
        t+=1;
        setTimeout("showLogo()",1000);
        }
    else
        {
           var x=document.getElementById('imglogo');
           x.style.width='120';
           x.style.height='0';
           x.style.display='inline';
           showLogo1()
        }
        
}

function showLogo1()
{
    var x=document.getElementById('imglogo');

    if (x.style.pixelHeight < height)
        {
        x.style.pixelHeight += 10;
        setTimeout("showLogo1()",50);
        }
}