var Flash = new Array()
//Flash[0] = ["/resinter/images/TBBInternet_KeyVisual_01Normal.swf",9500];
Flash[0] = ["/resinter/H69/crane/crane.swf",7200];
//Flash[1] = ["/resinter/NB/TBB100/tbb-2.swf",6500];
Flash[1] = ["/resinter/NB/tbbISO.swf",5500];
Flash[2] = ["/resinter/035/035.swf",7500];
Flash[3] = ["/resinter/flash/flash_TbbGoldPassBook.swf",7200];
Flash[4] = ["/resinter/flash/ParkingBanner.swf",5000];


function showFlash(ct){
document.getElementById("tbbFlash").innerHTML = "<OBJECT width=299 height=259 codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>" +
                                                "<PARAM VALUE=" + Flash[ct][0] + " NAME=movie>" +
                                                "<PARAM VALUE=high NAME=quality>" +
                                                "<param value=transparent name=wmode>" +
                                                "<embed width=299 height=259 wmode=transparent type=application/x-shockwave-flash src=" + Flash[ct][0] + " pluginspage=http://www.macromedia.com/go/getflashplayer quality=high></embed>" +
                                                "</OBJECT>";
}

function showTBBFlash(){
  aTime = 0;
  for (i=0; i<Flash.length; i++){
    setTimeout("showFlash(" + i + ")", aTime);
    aTime = aTime + Flash[i][1];
  }
  setTimeout("showTBBFlash()", aTime);
}

