// JavaScript Document


	function ShowLayer(INFO) {

		var X = document.Formulario.hidX.value;
		var Y = document.Formulario.hidY.value;

		document.getElementById(INFO).style.visibility = 'visible';
		document.getElementById(INFO).style.display = 'block';
		document.getElementById(INFO).style.left = X+'px';
		document.getElementById(INFO).style.top = Y+'px';
	}

	function HideLayer(INFO) {

		document.getElementById(INFO).style.visibility = 'hidden';
		document.getElementById(INFO).style.display = 'none';

	}
	
	function posCursor(ev) {
	
	  var px, py, cadena, obj;
	
	  if (!document.all) {
	
		   event = ev;
		   py = ev.pageY; 
		   px = ev.pageX;
	
	  }
	  else {
	
	 	py = event.clientY +document.body.scrollTop; 
	 	px = event.clientX +document.body.scrollLeft;
	
	}
	
	 document.Formulario.hidX.value = px;
	 document.Formulario.hidY.value = py;

  }
