var timerID = null;
var timerRunning = false;

// ------------------------------------------------------------------------------------------------  STOP CLOCK FUNCTION-->
function stopclock (){
        if(timerRunning);
                clearTimeout(timerID);
        timerRunning = false;
    }
// ------------------------------------------------------------------------------------------------  START CLOCK-->
function startclock () {
        stopclock();
        showtime();
    }
//  ------------------------------------------------------------------------------------------------  SHOW TIME-->
function showtime () {
        var now = new Date();
        var hours = now.getHours();
        var minutes = now.getMinutes();
        var seconds = now.getSeconds()
        var timeValue = "" + ((hours >12) ? hours -12 :hours)
        timeValue += ((minutes < 10) ? ":0" : ":") + minutes
        timeValue += ((seconds < 10) ? ":0" : ":") + seconds
        timeValue += (hours >= 12) ? " P.M." : " A.M."
        document.clock.face.value = timeValue;
        // you could replace the above with this
        // and have a clock on the status bar:
        // window.status = timeValue;
        timerID = setTimeout("showtime()",1000);
        timerRunning = true;
    }
document.write("<td><form name='clock' onSubmit='0'><input class='formb1' type='button' name='face' size='10' value='Coneja estéril'></form></td></tr><tr><td style='border-style: none; border-width: none; font-family:Times New Roman; font-size:20px;color: #3333FF;'><b>La coneja estéril</a></td></tr><tr><td style='border-style: none; border-width: none'><a href='http://www.paulinoarreola.com/Presentaciones.asp'><b>Presentaciones del autor</td></tr><tr><tr><td style='border-style: none; border-width: none'><a href='http://www.paulinoarreola.com/literatura/biografia.asp'><b>El Autor</td></tr><tr><td style='border-style: none; border-width: none'><a href='http://www.paulinoarreola.com/literatura/conejaesteril/ReportajesyEntrevistas.asp'><b>Reportajes y Entrevistas</a></td></tr><tr><td style='border-style: none; border-width: none'><a href='http://www.paulinoarreola.com/literatura/conejaesteril/listadodecuentos.asp'><b>Leer los Cuentos</a></td></tr><tr><td style='border-style: none; border-width: none'><a href='http://www.paulinoarreola.com/literatura/conejaesteril/enlaces.asp'><b>Enlaces Interesantes</a></td></tr><tr><td style='border-style: none; border-width: none'><a href='http://www.paulinoarreola.com/literatura/escritores.asp'><b>Otros Escritores</td></tr><tr><td style='border-style: none; border-width: none'><a href='http://www.paulinoarreola.com/contacto.asp'><b>Contacto</a></td></tr><tr><td style='border-style: none; border-width: none'><a href='enechinfo.asp'><b>100 Años ByCENECH</td></tr><tr><td style='border-style: none; border-width: none'><a href='http://www.paulinoarreola.com/literatura/conejaesteril/index.asp'><b>Página Principal</a></td></tr><tr><td style='border-style: none; border-width: none'><a href='http://www.paulinoarreola.com'><b>Salir</a></td>")