// JavaScript Document






function nuevoAjaxS() { 
	xmlhttp = null; //para que funcione en firefox se necesita que la variable sea una variable global
	if(window.XMLHttpRequest){		//mozilla compatible & IE7
		xmlhttp = new XMLHttpRequest();
			} else if (window.ActiveXObject) { //IE 6
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	if(!xmlhttp) {
		alert("Su navegador no soporta AJAX!");
	}
	return xmlhttp;
}

function nuevoAjax(){
        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;
}









function cargarContenido(strdivname,strurl){
	var contenedor;
	contenedor = document.getElementById(strdivname);
    strurl='http://www.siperu.com/noticias/Clientes/noticias.php?Domain=isthuando.com&'+strurl
	var ajax=null;
	ajax=nuevoAjax();
	ajax.open("GET",strurl,true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
		//alert(ajax.responseText);
			contenedor.innerHTML = ajax.responseText
		}
	}
	 ajax.send(null)
}
