function TestoLampeggiante(){
	if(document.getElementById("BLINK")){	
    var testo = document.getElementById("BLINK");
		if(testo.getAttribute("style") == "color: rgb(112, 153, 10);"){ //firefox
	    	if (testo.getAttribute("style") == "color: rgb(112, 153, 10);"){
				testo.style.color = "#C7DF3E";
			}else{
	    	    testo.style.color = "#70990a";
	    	}
		}else{ //I.E.
			if (testo.style.color == "#70990a"){
	        	testo.style.color = "#C7DF3E";
	    	}else{
	        	testo.style.color = "#70990a";
	    	}
		}
	}
}
window.setInterval("TestoLampeggiante()", 1000);

