function VistaPrevia()
{
	document.getElementById('vistaprevia').innerHTML = document.getElementById('txt').value.split(/\n/).join("<br />");
}

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 append (cadena, texto, valor) {
	if (vacio(cadena)) {
		cadena = cadena + '?';
	} else {
		cadena = cadena + '&';
	}
	return cadena + texto + valor;
}
	
function Generar(){
	var direccion = 'http://webchat.aureaworld.org';
	var variables = '';

   if(!vacio(document.chat.imagen.value) && document.chat.imagen.value != "null")
	variables = append(variables, "imagen=", document.chat.imagen.value);
   if(!vacio(document.chat.canal.value))
        variables = append(variables, 'chan=', encodeURIComponent (document.chat.canal.value));
   if(!vacio(document.chat.fondo.value))
        variables = append(variables, 'color=', document.chat.fondo.value);
   if(!vacio(document.chat.texto.value))
        variables = append(variables, 'texto=', document.chat.texto.value);	

	document.chat.codigo.value = '<center><iframe id="webchat" name="webchat" src="' + direccion + variables + '" width="' + document.chat.ancho.value + '" height="' + document.chat.largo.value + '" frameborder="0"></iframe></center>';
}

