// ==========================
// this is a code based on
// (C) 2000 by CodeLifter.com
// http://www.codelifter.com
// that uses color settings style and limited for only one link.
// changed in 04-2008 by Anderson Costa styling tags by visibility and no limit for blink effect.
// Free for all users, but leave in this  header
window.setTimeout(function() {
doTriStateRainbowLink();
}, 3000);
// blink speed in miliseconds
var rate = 500;


// set this to true for auto start; else, false
var DoIt = true

// do not edit below this line
// ---------------------------

bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"
ok = false

var i=0;
function doTriStateRainbowLink(){
   ok =  true

   if ((bNS && bV >= 5) || (bIE && bV >= 4)){
      i++;
      if (i==1) {C = "visible"; }
      if (i==2) {C = "hidden"; }
      if (!DoIt) {C = "visible"; }      
		
		if(bIE){
			var   blinks=document.getElementsByTagName("p");
	  		for (var y=0; y<blinks.length; y++){
	  			if (blinks[y].className =="piscar"){
					blinks[y].style.visibility= C;}
	  }}
		
     if (bNS){
		 var   blinks=document.getElementsByTagName("p");
	  		for (var y=0; y<blinks.length; y++){
	  			if (blinks[y].className =="piscar"){
					blinks[y].style.visibility= C;}
	  }}
	  if (i > 1) {i = 0;}
      if (DoIt) {timer=setTimeout('doTriStateRainbowLink()', rate);}
   }      
}