﻿// JScript File

        var _source;
        var _popup;
        
        function showConfirm(source){
            this._source = source;
            this._popup = $find('mdlPopup');
            
            this._popup.show();
        }
        
        function okClick(){
            this._popup.hide();
            __doPostBack(this._source.name, '');
        }
        
        function cancelClick(){
            this._popup.hide();
            this._source = null;
            this._popup = null;
        }
        
        function mueveReloj()
  {   
   momentoActual = new Date() 
   dayStr =momentoActual.toLocaleString();
   reloj.innerHTML=dayStr + "&nbsp;&nbsp;&nbsp;";
   setTimeout("mueveReloj()",1000); 
} 

        
       
        