// Recibimos "id_boton" y "nombre_canal"

// Función para abrir el popup
function abrir_chat(ruta)
{
	var widthw = 780;
	var heightw = 500;
	var estilo = "resizable=1,menubar=0,toolbar=0,location=0,personalbar=0"+
	                ",status=0,scrollbars=1,width="+widthw+",height="+heightw+",top="+
	                (screen.height-heightw)/2+",left="+(screen.width-widthw)/2;
	var v = open("http://chat.ozu.es/chat/azulframe.htm?skin=Azul&selnick=&selsala="+ruta,"chat",estilo);
}

ruta_boton = "http://chat.ozu.es/imagenes/";

switch(id_boton){
	case 1:
		ruta_boton += "boton_misala_dj_on.gif";
	break;
	case 2:
		ruta_boton += "boton_misala_usuarios_on.gif";
	break;
	case 3:
		ruta_boton += "boton_misala_fundadores_on.gif";
	break;
}

// Generamos el botón
document.write("<a href=\"javascript:void(0);\" onclick=\"javascript:abrir_chat('" + nombre_canal + "');\" ><img src=\""+ruta_boton+"\" border=\"0\" /></a>");
