/**
* @author:aliued-wd junbiao.zhujb
*/
function show_menu(obj_s,obj){
var s_id = document.getElementById(obj_s);
var sc_id = document.getElementById(obj);
s_id.style.display = "";
sc_id.className = "ahv";
}
function hide_menu(obj_h,obj){
var h_id = document.getElementById(obj_h);
var hc_id = document.getElementById(obj);
h_id.style.display = "none";
hc_id.className = "alk";
}
var historyDiv;
function changeStyle(thisEl,name,type){
var root = thisEl.parentNode;
var list = root.getElementsByTagName("a");
for(var i=0;i<list.length;i++){
if(list[i].className=="check"){
list[i].className="uncheck";
break;
}
}
thisEl.className = "check";
if(!historyDiv){
historyDiv = document.getElementById(name+'1');
}
historyDiv.style.display="none";
document.getElementById(name+type).style.display = "block";
historyDiv = document.getElementById(name+type);
}
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">' +'<embed src="'+name+'" width="'+width+'" height="'+height+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>' +	'</object>';document.write(str);}
