function exeFecha(texto,div) {
	var fecha = texto.getElementsByTagName("datenow")[0].childNodes[0].nodeValue;
	updateDiv(div,fecha);
}
function exeHora(texto,div) {
	var hora = texto.getElementsByTagName("timenow")[0].childNodes[0].nodeValue;
	updateDiv(div,hora);
}

function getFecha(){
        var root=''
        if(typeof (ruta) == "undefined") root='';
        else                                        root=ruta;
	doAjax(root+'libPropias/php-ajax/ajax-date.php','','exeFecha','divDate','get','1','','','','');	
}

function getHora(){
        var root=''
        if(typeof (ruta) == "undefined") root='';
        else                                        root=ruta;
	doAjax(root+'libPropias/php-ajax/ajax-time.php','','exeHora','divTime','get','1','','','','');
}


function cargaIni(){
	getFecha();
	//getHora();
	//setInterval("getFecha()",60000);
	//setInterval("getHora()",1000);	
}
