
	function changecolor(which,type,color){
		if (type==0){
			if (flashlinks[which].style.color!=color)
				flashlinks[which].style.color=color;
			else
				flashlinks[which].style.color=''
		}
		else if (type==1){
			if (flashlinks[which].style.backgroundColor!=color)
				flashlinks[which].style.backgroundColor=color
			else
				flashlinks[which].style.backgroundColor=''
		}

	}

