// JavaScript Document
var	xmlHttp;
var	myrand=parseInt(Math.random()*99999999);
function GetXmlHttpObject(){ 
	var objXMLHttp=null
	if (window.XMLHttpRequest){
		objXMLHttp=new XMLHttpRequest()
	} else if (window.ActiveXObject) {
		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
	}
	return objXMLHttp
}
function ajax(script){
	xmlHttp=GetXmlHttpObject()
	var url= script;
	//var texto= titulo;
	xmlHttp.onreadystatechange=function() {
									if (xmlHttp.readyState==1){
										document.getElementById("index").innerHTML='<div style="padding:5px;width:150px;background-color:#efefef;border:2px solid #666666;"><img src="http://imagenes.empleate.com/loading.gif" border="0"/>Cargando Datos...</div>';
									}
									if (xmlHttp.readyState==4 || xmlHttp.readyState==200){ 
										document.getElementById("index").innerHTML=xmlHttp.responseText
										//document.getElementById("titulo_seccion").innerHTML=texto
									}
								}
		xmlHttp.open("GET",url+'?rand='+myrand,true)
		xmlHttp.send(null)
}
