function mostrar_publicidad(espacio_publicitario){
	var parametros="accion=Mostrar&nombre="+espacio_publicitario;
	var respuesta=get_html("/frontend/esspublicity/esspublicity.php",parametros,"POST");
	put_html(espacio_publicitario,respuesta);
	
	parametros="accion=MostrarDatosEspacio&nombre="+espacio_publicitario;
	respuesta=get_html("/frontend/esspublicity/esspublicity.php",parametros,"POST");
	var datos=respuesta.responseText;
	var datos_array=datos.split("|");
	
	if(datos_array[0]!="") document.getElementById(espacio_publicitario).style.width=datos_array[0]+"px";
	if(datos_array[1]!="") document.getElementById(espacio_publicitario).style.height=datos_array[1]+"px";
}

/*funciones para las Encuestas*/

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function chequearencuesta(){
	i=0;
	bandera=0;
	while (i<document.formencuesta.radio.length){
		if (document.formencuesta.radio[i].checked) bandera=1;      
		i++;
	}

	if (bandera==1) {
		document.formencuesta.control.value='';
		document.formencuesta.submit();
	}
	else alert ('Debe seleccionar un valor para votar!');
}
