// JavaScript Document
function restore(x,y){
    var oDiv = document.getElementById(y);
    var oLis = oDiv.getElementsByTagName("tr");
    //alert(oLis.length);
    for (var i=0; i<oLis.length; i++)
    {
        oLis[i].className = 'tag_hid';
    }
    oLis[x].className = 'tag_dis';
}
function restores(x,y){
    var oDiv = document.getElementById(y);
    var oLis = oDiv.getElementsByTagName("table");
    //alert(oLis.length);
    for (var i=0; i<oLis.length; i++)
    {
        oLis[i].className = 'tag_hid';
    }
    oLis[x].className = 'tag_dis';
}


function addswf(url,w,h){
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ w +'" height="'+ h +'">');
document.write('<param name="movie" value='+url+'><param name="quality" value="high">');
document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
document.write('<param name="FlashVars" value="">');

document.write('<embed src='+url+' FlashVars="" quality="high" width="'+ w +'" height="'+ h +'" type="application/x-shockwave-flash"  menu="false" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />'); document.write('</object>');
}
