 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 function mano(src) {
if (!src.contains(event.fromElement))  src.style.cursor = "hand";

 }
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 function puntero(src) {
	if (!src.contains(event.toElement))  src.style.cursor = "default";

 }
  /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
  function entrar(src,color_entrada) {
 if (!src.contains(event.fromElement)) {
	 src.style.cursor = "hand";
	 src.bgColor = color_entrada;
	 src.FontColor="ff0000";
	}
 }
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 function salir(src,color_default) {
	if (!src.contains(event.toElement)) {
	 src.style.cursor = "default";
	 src.bgColor = color_default;
	}
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////

function abrirVentana(enlace,ancho,alto,tit)
{
	var y=screen.width;
	var x=screen.height;
	x=eval((x-alto)*0.5);
	y= eval((y-ancho)*0.5);
	
	window.open (enlace,tit,'top='+x+',left='+y+',width=' + ancho + ',height='+ alto +', scrollbars=No,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no');
}
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////


function abrirVentanaScroll(enlace,ancho,alto,tit)
{
	var y=screen.width;
	var x=screen.height;
	x=eval((x-alto)*0.5);
	y= eval((y-ancho)*0.5);
	
	window.open (enlace,tit,'top='+x+',left='+y+',width=' + ancho + ',height='+ alto +', scrollbars=Yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no');
}

 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////

function parpadear() {
  var blink = document.all.tags("BLINK")
  for (var i=0; i < blink.length; i++)
    blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : "" 
}
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////

function texto_intermitente(milisegundos) {
  if (document.all)
  setInterval("parpadear()",milisegundos)
}
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
