﻿function setDisSynthesizeFwzx(imgId,iPic,contentDivID)
{
	InitializeFwzx();
	if(imgId==null || document.getElementById(contentDivID)==null) return;	
	imgId.src="/images/spbs/xzfw_" + iPic + ".jpg";
	document.getElementById(contentDivID).style.display="block";
}
function InitializeFwzx()
{
	document.getElementById("img1").src="/images/spbs/xzfw_bg_1.jpg";
	document.getElementById("img2").src="/images/spbs/xzfw_bg_2.jpg";
	document.getElementById("img3").src="/images/spbs/xzfw_bg_3.jpg";
	document.getElementById("img4").src="/images/spbs/xzfw_bg_4.jpg";
	document.getElementById("img5").src="/images/spbs/xzfw_bg_5.jpg";
	document.getElementById("fwzx_consent_1").style.display="none";
	document.getElementById("fwzx_consent_2").style.display="none";
	document.getElementById("fwzx_consent_3").style.display="none";
	document.getElementById("fwzx_consent_4").style.display="none";
	document.getElementById("fwzx_consent_5").style.display="none";
}

//===========================点击展开关闭效果====================================
function openShutManager(oSourceObj,oTargetObj,shutAble,oOpenTip,oShutTip){
    var sourceObj = typeof oSourceObj == "string" ? document.getElementById(oSourceObj) : oSourceObj;
    var targetObj = typeof oTargetObj == "string" ? document.getElementById(oTargetObj) : oTargetObj;
    var openTip = oOpenTip || "";
    var shutTip = oShutTip || "";
    if(targetObj.style.display!="none"){
       if(shutAble) return;
       targetObj.style.display="none";
       if(openTip && shutTip){
        sourceObj.innerHTML = shutTip;
        if(oTargetObj=='box1')
        {
            setDis('fdyj_balck1','block');
        }
        if(oTargetObj=='box2')
        {
            setDis('fdyj_balck2','block');
        }
       }
    } else {
       targetObj.style.display="block";
       if(openTip && shutTip){
        sourceObj.innerHTML = openTip; 
        if(oTargetObj=='box1')
        {
            setDis('fdyj_balck1','none');
        }
        if(oTargetObj=='box2')
        {
            setDis('fdyj_balck2','none');
        }
       }
    }
}

function setDis(contentDivID,dis)
{
	document.getElementById(contentDivID).style.display=dis;
}
