function majax()
		{	var ObjetoAjax=false;
			try{
					ObjetoAjax=new ActiveXObject("Msxml2.XMLHTTP");
			   }
			 catch(e)  
			 	{
					try{
							ObjetoAjax=new ActiveXObject("Microsoft.XMLHTTP");
						}
					catch(E){ObjetoAjax=false;}	
				}
			if(!ObjetoAjax&& typeof XMLHttpRequest!='undefined'){ObjetoAjax= new XMLHttpRequest();}	
			
			return ObjetoAjax;
		}

function encuesta_ingles(respuesta1, respuesta2)
{
var ajax=majax();
var url='php_encuesta.php';
ajax.open('get',url+'?respuesta1='+respuesta1+'&respuesta2='+respuesta2,true);
ajax.onreadystatechange=function(){
if(ajax.readyState==4)
{       if(ajax.status==200)
        {
           //document.post.submit();
        }
}
}
ajax.send(null);
}

function abrirVentana_chat(ancho, alto){
var sHeight, sWidth;
sHeight = screen.height;
sWidth = screen.width;
var sLeft, sTop;
sLeft=(screen.width - ancho) / 2;
sTop=(screen.height - alto) / 2;
window.open('chat.php', '_blank','top='+sTop+', left='+sLeft+', height='+alto+', width='+ancho+', status=no, menubar=no, resizable=no, scrollbars=no, toolbar=no, location=no, directories=no');
}