function vacio(cadena){                              
    var blanco = " \n\t" + String.fromCharCode(13);
    var i;                             
    var es_vacio;
    for(i = 0, es_vacio = true; (i < cadena.length) && es_vacio; i++)
      es_vacio = blanco.indexOf(cadena.charAt(i)) != - 1;
    return(es_vacio);
  }
function Generar(){
	var direccion = 'http://www.chateagratis.net/tuwebchat.php?';
   if(!vacio(document.chat.fondo.value)) 
	direccion = direccion + 'fondo=' + document.chat.fondo.value + '&';
   if(!vacio(document.chat.texto.value))
	direccion = direccion + 'texto=' + document.chat.texto.value + '&';
   if(!vacio(document.chat.borde.value))
	direccion = direccion + 'borde=' + document.chat.borde.value + '&';
   if(!vacio(document.chat.canal.value))   	
    direccion = direccion + 'canal=' + document.chat.canal.value;
	
	document.chat.codigo.value = '<iframe src="' + direccion +'" scrolling="no" width="315" height="110" frameborder="0"></iframe><noframes><b>Chat no disponible:</b> Atención tu navegador no soporta frames por lo que no puedes visualizar el chat. Para acceder al chat acude a cualquiera de nuestras webs disponibles:<ul><li><a href="http://www.chateagratis.net">Chat</a></li><li><a href="http://www.chatearlatino.net">Chat Latino</a></li><li><a href="http://www.chateargratis.info">Chatear</a></li></ul></noframes><br /><a href="http://www.chateagratis.net">Chat gratis</a>';
}
