
function Win(mypage){
window.open(mypage,'','width=500,height=280,top=10,left=10,scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no');
}
function textCounter(field, countfield, maxlimit){
if(field.value.length > maxlimit) { field.value = field.value.substring(0, maxlimit); }
else { countfield.value = field.value.length + '/' + maxlimit; }
}
function hora(){
var fecha = new Date();
var hora = fecha.getHours();
var minuto = fecha.getMinutes();
var segundo = fecha.getSeconds();
if (hora < 10) {hora = "0" + hora;}
if (minuto < 10) {minuto = "0" + minuto;}
if (segundo < 10) {segundo = "0" + segundo;}
var horaactual = hora + ":" + minuto + ":" + segundo;
document.getElementById('hora').firstChild.nodeValue = horaactual;
tiempo = setTimeout('hora()',1000);
}
 