// JavaScript Document
/*
	FUNCION ABRE VENTANA DE LA ENCUESTA
*/

function abreVentanaEncuesta(){
		win = new Window('window_encuesta', {className:"alphacube",url:"php/encuesta.php", top:100, left:400, width : 600,  height: 700 ,title:"Alianza por la competitividad - Encuesta", closable: true, maximizable: false, minimizable: false}); 
		win.setDestroyOnClose(); 
		win.showCenter(true); 
}

function abreVentana(url, w, h, s){
	window.open(url,null,"height="+h+",width="+w+",status=yes,toolbar=no,menubar=no,location=no,Scrollbars="+s+"");	
	}

/*
function abreVentana(url){
	window.open(url,null,"height=791,width=612,status=yes,toolbar=no,menubar=no,location=no");	
	}
*/
