function getXMLHTTPRequest(){

    try{

        req= new XMLHttpRequest();

    }catch(err1){

        try{

            req= new ActiveXObject("Microsoft.XMLHTTP");

        }catch(err3){

            req= false;

        }

    }

    return req;

}



var httpAsesor= new getXMLHTTPRequest();





///Inicio Caga imgs pequenias

function cargaConcesionarios_1(idProvincia){



//alert(acumula);

    var myurl= 'server/serverConcesionario.php';

    var myrand= parseInt(Math.random()*999999999999999);

    var modurl= myurl+'?rand='+myrand;



    httpAsesor.open("POST", modurl, true);

    httpAsesor.onreadystatechange= cargaConcesionarios1;

    httpAsesor.setRequestHeader('Content-Type','application/x-www-form-urlencoded');

    httpAsesor.send('&op=1&idProvincia='+idProvincia);

}



function cargaConcesionarios1(){

    if(httpAsesor.readyState == 4){

        if(httpAsesor.status == 200){

            var info=httpAsesor.responseText;

                document.getElementById('popUpDiv2').innerHTML=info;

                document.getElementById('popUpDiv2').className='visible';
                document.getElementById('capaNegra').className='oscurecer';
				document.getElementById('capaNegra').style.height='1500px';

        }

    }else{

        document.getElementById('popUpDiv2').innerHTML='<table width="100%" border="0"><tr>\n\<td width="298" align="center">&nbsp;</td></tr><tr><td align="center">&nbsp;</td></tr><tr>\n\<td align="center">&nbsp;</td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center">\n\&nbsp;</td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center">\n\<img src="images/loader.gif" width="32" height="32" /></td></tr></table>';

        document.getElementById('popUpDiv2').className='visible';

        document.getElementById('capaNegra').className='oscurecer';

    }

}

///Fin Caga imgs pequenias



///Inicio GoogleMaps

function cargaGoogleMaps(nombreProvincia, nombreConcesionario, idCiudad, idGMap){
//alert(acumula);

    var myurl= 'server/serverGoogleMaps.php';
    var myrand= parseInt(Math.random()*999999999999999);
    var modurl= myurl+'?rand='+myrand;



    httpAsesor.open("POST", modurl, true);
    httpAsesor.onreadystatechange= cargaGoogleMaps1;
    httpAsesor.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
    httpAsesor.send('&op=1&nombreProvincia='+nombreProvincia+'&nombreConcesionario='+nombreConcesionario+'&idCiudad='+idCiudad+'&idGMap='+idGMap);

}



function cargaGoogleMaps1(){
    if(httpAsesor.readyState == 4){
        if(httpAsesor.status == 200){
            var info=httpAsesor.responseText;

                document.getElementById('popUpDiv3').innerHTML=info;
                document.getElementById('popUpDiv3').className='visible';
				document.getElementById('popUpDiv2').className='oculto';
                document.getElementById('capaNegra').className='oscurecer';
				document.getElementById('capaNegra').style.height='1500px';
        }

    }else{

        document.getElementById('popUpDiv3').innerHTML='<table width="100%" border="0"><tr>\n\<td width="298" align="center">&nbsp;</td></tr><tr><td align="center">&nbsp;</td></tr><tr>\n\<td align="center">&nbsp;</td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center">\n\&nbsp;</td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center">\n\<img src="images/loader.gif" width="32" height="32" /></td></tr></table>';

        document.getElementById('popUpDiv2').className='visible';
        document.getElementById('capaNegra').className='oscurecer';

    }

}

///Fin Caga GoogleMaps




