imagefile = new Array("/img/fold_plus.gif", "/img/fold_mins.gif");


image = new Array(imagefile.length);
for(count = 0; count < (imagefile.length - 1); count++){
	image[count] = new Image();
	image[count].src = imagefile[count];
}

function ImageChange(id){
	if(window.document.images[id].src.indexOf(imagefile[0]) != -1){
		window.document.images[id].src  = imagefile[1];
	}else{
		window.document.images[id].src  = imagefile[0];
	}
}

function Display(id){
	if(document.all){
		if(document.all(id).style.display == "block"){
			document.all(id).style.display = "none";
		}else if(document.all(id).style.display == "none"){
			document.all(id).style.display = "block";
		}
	}else if(document.getElementById){
		if(document.getElementById(id).style.display == "block"){
			document.getElementById(id).style.display = "none";
		}else if(document.getElementById(id).style.display == "none"){
			document.getElementById(id).style.display = "block";
		}
	}
}





imagefile2 = new Array("/img/fold_plus_en-ap.gif", "/img/fold_mins_en-ap.gif");


image2 = new Array(imagefile2.length);
for(count = 0; count < (imagefile2.length - 1); count++){
	image[count] = new Image();
	image[count].src = imagefile2[count];
}

function ImageChange2(id){
	if(window.document.images[id].src.indexOf(imagefile2[0]) != -1){
		window.document.images[id].src  = imagefile2[1];
	}else{
		window.document.images[id].src  = imagefile2[0];
	}
}
