function agregarFavoritos(url, texto) {
	if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
		window.external.AddFavorite(url, texto);
	} else {
		window.sidebar.addPanel(texto, url, '');   
	}
}

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.chatsfriends.com/chat/generar.php?';
   if(!vacio(document.chat.canal.value))   	
    direccion = direccion + 'canal=' + document.chat.canal.value;
	
	document.chat.codigo.value = '<center><IFRAME marginWidth="0" marginHeight="0" src="' + direccion +'" width="210" height="173" scrolling="no" frameborder="0"></IFRAME><br><a href="http://www.chatsfriends.com/" target="_blank">Chat gratis</a></center>';
}


function Generar2(){
	var direccion = 'http://www.chatsfriends.com/chat/chatf3.php?';
   if(!vacio(document.chat.canal.value))   	
    direccion = direccion + 'canal=' + document.chat.canal.value;
	
	document.chat.codigo.value = '<center><IFRAME marginWidth="0" marginHeight="0" src="' + direccion +'" width="700" height="470" scrolling="no" frameborder="0"></IFRAME><br><a href="http://www.chatsfriends.com/" target="_blank">Chat gratis</a></center>';
}




