function enviar_encuesta(){ 
   document.encuesta.submit() 
} 				

function popupform(myform, windowname){
	if (! window.focus)return true;
	<!--window.open('', windowname, 'height=350,width=620,location=0,scrollbars=0');-->
	myform.target=windowname;
	setTimeout('document.Acceso.reset()',200);
	return true;
}								

function popupform2(myform, windowname){
	if (! window.focus)return true;
	<!--window.open('', windowname, 'height=350,width=620,location=0,scrollbars=0');-->
	myform.target=windowname;
	setTimeout('document.login.reset()',200);
	return true;
}

var indice=1;
setInterval("animar()",15000);
function animar(){
	indice=indice+1;
	if (indice==1){
		fAjax('codigo/muestra_notas_web.php','&nota1=3&nota2=4','div_notas'); activar('pag1');
	}
	if (indice==2){
	fAjax('codigo/muestra_notas_web.php','&nota1=7&nota2=8','div_notas'); activar('pag2');
	}
	if (indice==3){
		fAjax('codigo/muestra_notas_web.php','&nota1=2&nota2=5','div_notas'); activar('pag3');
	}
	if (indice==4){
		fAjax('codigo/muestra_notas_web.php','&nota1=6','div_notas'); activar('pag4');
		indice=0;
	}
}

function activar(valor){
	document.getElementById('pag1').className='';
	document.getElementById('pag2').className='';
	document.getElementById('pag3').className='';
	document.getElementById('pag4').className='';
	document.getElementById(valor).className='activado';
	if (valor=='pag1'){	indice=1;}
	if (valor=='pag2'){	indice=2;}
	if (valor=='pag3'){	indice=3;}
	if (valor=='pag4'){	indice=0;}
}