									function closecucre(){
									document.getElementById('presenceBar').style.display='none';
									}
									var delay=50;
									var currentChar=1;
									var destination="[not defined]";
									
									function type()
									{
									  if (document.getElementById)
									  {
									 var dest=document.getElementById(destination);
									 if (dest)
									 {
									dest.innerHTML=text.substr(0, currentChar);
									currentChar++;
									if (currentChar>text.length)
									{
									  currentChar=1;
									  setTimeout("type()", 5000);
									}
									else
									{
									  setTimeout("type()", delay);
									}
									 }
									  }
									}
									
									function startTyping(delayParam, destinationParam)
									{
									  text=document.getElementById(destinationParam).innerHTML;
									  delay=delayParam;
									  currentChar=1;
									  destination=destinationParam;
									  type();
									}
									startTyping(50, "textDestination152");
