// JavaScript Document
function verencu(){
	opc = document.getElementsByName('opcion');
	for(i=0;i<opc.length;i++){
    	if(opc[i].checked){
	   		var opcion = document.getElementsByName('opcion')[i].value;
			break;
	   	}
    }
	var datos = 'opcion='+opcion;
	/*var url = 'encuesta/verencuesta.php';
	FAjax(url, 'sp_encuesta', datos, 'POST');
	//alert (opcion);
	
	var idgp = idgpo;
	var idaf = idafi;*/
	$("#encuesta").load("encuesta/verencuesta.php", {opcion: opcion});
}
function Abrir_Ventana_v(el_url, w, h, t) {
	var especificaciones="top=0, left=0, toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=no, width="+w+", 		height="+h;
	var titulo=t;
	window.open(el_url,titulo,especificaciones);
}