//调用FLASH ————含透明

function showFlash(name, width, height) {
 str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'">' +
   '<param name="movie" value="'+name+'">' +
   '<param name="quality" value="high">' +
   '<param name="wmode" value="transparent">' +
   '<param name="AllowFullScreen" value="true" >' +
   '<embed src="'+name+'" width="'+width+'" height="'+height+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent"></embed>' + '</object>';
 document.write(str);
}

//调用舌签
function GetObj(objName){ 
if(document.getElementById){ 
return eval('document.getElementById("' + objName + '")'); 
}else{ 
return eval('document.all.' + objName); 
} 
} 
function Show_Sub(id_num,num){ 
    for(var i = 0;i <= 12;i++){
        if(GetObj("S_Menu_" + id_num + i)){GetObj("S_Menu_" + id_num + i).className = 'shape_nor';}
        if(GetObj("S_Cont_" + id_num + i)){GetObj("S_Cont_" + id_num + i).style.display = 'none';}
    }
    if(GetObj("S_Menu_" + id_num + num)){GetObj("S_Menu_" + id_num + num).className = 'shape_act';}
    if(GetObj("S_Cont_" + id_num + num)){GetObj("S_Cont_" + id_num + num).style.display = 'block';}
}
function GetObj(objName){
    if(document.getElementById){
        return eval('document.getElementById("' + objName + '")');
    }else{
        return eval('document.all.' + objName);
    }
}

function setTab(name,cursel,n){
for(i=1;i<=n;i++){
var menu=document.getElementById(name+i);
var con=document.getElementById("con_"+name+"_"+i);
menu.className=i==cursel?"hover":"";
con.style.display=i==cursel?"block":"none";
}
}



//这里调用滑过标签样式




