
function VerFoto(path,name,w,h,sroll){
	window.open (path,name,"width="+w+",height="+h+",menubar=no,resizable=yes,scrollbars="+sroll)
}
function mouseOver(celda){
	document.all[celda].style.backgroundColor='';
}
function mouseOut(celda){
	document.all[celda].style.backgroundColor='';
}
function ChangeBoton(img,path){
	document.all[img].src = 'Images/' + path
}

function GoTo(pag){
	window.location.href = pag
}


//************************************************************************//

//	FUNCIONES PARA ACTUALIZAR LA HORA

var dia = new Date()
var hora

//-----------------------------------------------------------
function agregarCero(val){
	if(val<10){
		val = "0" + val
	}
	return (val)
}

//-----------------------------------------------------------

function armarHora(h,m,s){
	h = agregarCero(h)
	m = agregarCero(m)
	s = agregarCero(s)
	return (h+":"+m+":"+s)
}

//-----------------------------------------------------------

function reloj(){
	dia.setSeconds(dia.getSeconds()+1)
}

//-----------------------------------------------------------

hora = armarHora(dia.getHours(),dia.getMinutes(),dia.getSeconds())

//-----------------------------------------------------------

function actualizarHora(){
	reloj()
	hora = armarHora(dia.getHours(),dia.getMinutes(),dia.getSeconds())
	document.all.TdHora.innerText = hora
}

//************************************************************************//

