//The file had been created by Zhang Yan on Sep.7, 2006.
function initIt()
{
    tempColl = document.all.tags("DIV");
    for (i=0; i<tempColl.length; i++) 
	{
      if (tempColl(i).className == "child") tempColl(i).style.display = "none";
    }
}

function expandIt(el,num) 
{
	whichEl = MM_findObj(el +num+ "Child");
  	whichIm = MM_findObj(el+num+"Img");

  
  if(whichEl.style.display=="block")
  {
  	whichEl.style.display = "none";
    whichIm.src = "../images/cms/index_33.gif";
  }
  else
  {
  	whichEl.style.display = "block";
    whichIm.src = "../images/cms/index_42.gif";
    var i=0;
    while (MM_findObj(el +i+ "Child")!=null) 
	{
	if (i!=num)
		{
		 whichIm =  MM_findObj(el+i+"Img");
		 whichEl =  MM_findObj(el +i+"Child");
		 whichEl.style.display = "none";
		 whichIm.src = "../images/cms/index_33.gif";
		}
	i++;		
	}
  }
    window.event.cancelBubble = true ;
}
function expandIE(el,num) {
  whichEl = MM_findObj(el +num+ "Child");
  whichIm = MM_findObj(el+num+"Img");
  if (whichEl.style.display == "none") 
  {
   whichEl.style.display = "block";
   whichIm.src = "../images/cms/index_42.gif";
    var i=0;
    while (MM_findObj(el +i+ "Child")!=null) 
	{
	if (i!=num)
		{
		 whichIm =  MM_findObj(el+i+"Img");
		 whichEl =  MM_findObj(el +i+"Child");
		 whichEl.style.display = "none";
		 whichIm.src = "../images/cms/index_33.gif";
		}
	i++;		
	}
  	
  }
  else {
    whichEl.style.display = "none";
    whichIm.src = "../images/cms/index_33.gif";
   
  }
    window.event.cancelBubble = true ;
}
//onload = initIt;

function killErrors() {
return true;
}
window.onerror = killErrors;


function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}


