
function vaciarCombo(comboDestino)
{
	document.getElementById(comboDestino).length = null;
}

function agregarDatoCombo(comboDestino,orden,descripcion,valor,estado)
{
	document.getElementById(comboDestino).options[orden] = new Option(descripcion,valor,"",estado);
}

function Limpiar(comboDestino) 
{ 
	vaciarCombo(comboDestino);
	texto="Seleccionar";
	agregarDatoCombo(comboDestino,0,texto,"",true);
} 
function volver() 
{
	window.history.back();
}
function SetearCodigo(id)
{
	document.getElementById('codigo').value = id;
}

var anterior="";

function resaltar(obj) {
	if (anterior != obj)
		obj.style.backgroundColor='#F0FCFF';
}

function normal(obj) {
	if (anterior != obj)
		obj.style.backgroundColor='';
}

function marcar(obj) {
	/* despinto la anterior */
	if (anterior) 
		anterior.style.backgroundColor='';
	
	obj.style.backgroundColor='#CCF4FF';
	anterior = obj;
}
function hora()
{
  var Dia=new Date()
  var horas=Dia.getHours()
  var minutos=Dia.getMinutes()
  var dn = "AM" 
												
  /*if (horas > 12){
    dn = "PM"
    horas= horas - 12
    }
  if (horas == 0)
    horas = 12*/

  if (minutos <= 9)
  minutos = "0" + minutos
			
  setTimeout("hora()",10000)
  document.getElementById("hora").innerHTML = horas + ":" + minutos //'Si queres AM y PM:' + " " + dn;
}