//SCRIPT EMAIL
function contato(nome,dominio) {
   endereco = "mailto:" + nome + "@" + dominio;
   window.location = endereco;
}

//MUDA A TRADUÇÃO DO SITE :: SCRIPT FOR CHANGING CURRENT LANGUAGE
function MM_jumpMenu(targ,selObj,restore) {
   eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
   if (restore) selObj.selectedIndex=0;
}

// ABRE UMA POPUP QUALQUER :: OPENS A COMMON POPUP
function popup(nome,wid,hei) {
window.open(nome+".html",nome,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+wid+",height="+hei);
}

function faq(nome) {
window.open(nome,"faq","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=390,height=420");
}

function ideas(nome) {
window.open(nome,"ideas","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=390,height=420");
}

// VERIFICA SE OS CAMPOS DO FORMULÁRIO FORAM PREENCHIDOS :: VALIDATE FORM
function valida(){
	if (document.chalk.country.value=="") {
		alert('You forgot to tell the name of your country...');
		chalk.country.focus();
	return false;
	}
	if (document.chalk.city.value=="") {
		alert('You forgot to tell the name of your city...');
		chalk.city.focus();
	return false;
	}
	if (document.chalk.neighbor.value=="") {
		alert('You forgot to tell the name of your neighborhood...');
		chalk.neighbor.focus();
	return false;
        }
	if (document.chalk.language1.value=="") {
		alert('You forgot to tell your first language...');
		chalk.language1.focus();
	return false;
	}
}

// AS TRÊS FUNÇÕES SEGUINTES TRANSFORMAM CARACTERES ACENTUADOS EM CÓDIGOS HTML
// THE NEXT THREE FUNCTIONS TURN ACCENTED CHARACTERS INTO HTML CODES
function doit(text) {

    text = replace(text,unescape('%C0'),'&Agrave;');
    text = replace(text,unescape('%C1'),'&Aacute;');
    text = replace(text,unescape('%C2'),'&Acirc;');
    text = replace(text,unescape('%C3'),'&Atilde;');
    text = replace(text,unescape('%C4'),'&Auml;');
    text = replace(text,unescape('%C5'),'&Aring;');
    text = replace(text,unescape('%C6'),'&AElig;');
    text = replace(text,unescape('%C7'),'&Ccedil;');
    text = replace(text,unescape('%C8'),'&Egrave;');
    text = replace(text,unescape('%C9'),'&Eacute;');
    text = replace(text,unescape('%CA'),'&Ecirc;');
    text = replace(text,unescape('%CB'),'&Euml;');
    text = replace(text,unescape('%CC'),'&Igrave;');
    text = replace(text,unescape('%CD'),'&Iacute;');
    text = replace(text,unescape('%CE'),'&Icirc;');
    text = replace(text,unescape('%CF'),'&Iuml;');
    text = replace(text,unescape('%D0'),'&ETH;');
    text = replace(text,unescape('%D1'),'&Ntilde;');
    text = replace(text,unescape('%D2'),'&Ograve;');
    text = replace(text,unescape('%D3'),'&Oacute;');
    text = replace(text,unescape('%D4'),'&Ocirc;');
    text = replace(text,unescape('%D5'),'&Otilde;');
    text = replace(text,unescape('%D6'),'&Ouml;');
    text = replace(text,unescape('%D7'),'&Oslash;');
    text = replace(text,unescape('%D8'),'&Oslash;');
    text = replace(text,unescape('%D9'),'&Ugrave;');
    text = replace(text,unescape('%DA'),'&Uacute');
    text = replace(text,unescape('%DB'),'&Ucirc;');
    text = replace(text,unescape('%DC'),'&Uuml;');
    text = replace(text,unescape('%DD'),'&Yacute;');
    text = replace(text,unescape('%DE'),'&THORN;');
    text = replace(text,unescape('%DF'),'&szlig;');
    text = replace(text,unescape('%E0'),'&agrave;');
    text = replace(text,unescape('%E1'),'&aacute;');
    text = replace(text,unescape('%E2'),'&acirc;');
    text = replace(text,unescape('%E3'),'&atilde;');
    text = replace(text,unescape('%E4'),'&auml;');
    text = replace(text,unescape('%E5'),'&aring;');
    text = replace(text,unescape('%E6'),'&aelig;');
    text = replace(text,unescape('%E7'),'&ccedil;');
    text = replace(text,unescape('%E8'),'&egrave;');
    text = replace(text,unescape('%E9'),'&eacute;');
    text = replace(text,unescape('%EA'),'&ecirc;');
    text = replace(text,unescape('%EB'),'&euml;');
    text = replace(text,unescape('%EC'),'&igrave;');
    text = replace(text,unescape('%ED'),'&iacute;');
    text = replace(text,unescape('%EE'),'&icirc;');
    text = replace(text,unescape('%EF'),'&iuml;');
    text = replace(text,unescape('%F0'),'&eth;');
    text = replace(text,unescape('%F1'),'&ntilde;');
    text = replace(text,unescape('%F2'),'&ograve;');
    text = replace(text,unescape('%F3'),'&oacute;');
    text = replace(text,unescape('%F4'),'&ocirc;');
    text = replace(text,unescape('%F5'),'&otilde;');
    text = replace(text,unescape('%F6'),'&ouml;');
    text = replace(text,unescape('%F7'),'&oslash;');
    text = replace(text,unescape('%F8'),'&oslash;');
    text = replace(text,unescape('%F9'),'&ugrave;');
    text = replace(text,unescape('%FA'),'&uacute;');
    text = replace(text,unescape('%FB'),'&ucirc;');
    text = replace(text,unescape('%FC'),'&uuml;');
    text = replace(text,unescape('%FD'),'&yacute;');
    text = replace(text,unescape('%FE'),'&thorn;');
    text = replace(text,unescape('%FF'),'&yuml;');

    return text;
}

function replace(string,text,by) {
// Replaces text with by in string
    var strLength = string.length, txtLength = text.length;
    if ((strLength == 0) || (txtLength == 0)) return string;

    var i = string.indexOf(text);
    if ((!i) && (text != string.substring(0,txtLength))) return string;
    if (i == -1) return string;

    var newstr = string.substring(0,i) + by;

    if (i+txtLength < strLength)
        newstr += replace(string.substring(i+txtLength,strLength),text,by);

    return newstr;
}

function altchar() {
document.codes.codechalk.value = doit(document.codes.codechalk.value);
document.codes.codepost.value = doit(document.codes.codepost.value);
document.codes.codemeta.value = doit(document.codes.codemeta.value);
}

//ELIMINA OS ESPAÇOS À DIREITA :: REMOVE WHITESPACES TO THE RIGHT
function RTrim(str)
/*
        PURPOSE: Remove trailing blanks from our string.
        IN: str - the string we want to RTrim

*/
{
        // We don't want to trip JUST spaces, but also tabs,
        // line feeds, etc.  Add anything else you want to
        // "trim" here in Whitespace
        var whitespace = new String(" \t\n\r");

        var s = new String(str);

        if (whitespace.indexOf(s.charAt(s.length-1)) != -1) {
            // We have a string with trailing blank(s)...

            var i = s.length - 1;       // Get length of string

            // Iterate from the far right of string until we
            // don't have any more whitespace...
            while (i >= 0 && whitespace.indexOf(s.charAt(i)) != -1)
                i--;


            // Get the substring from the front of the string to
            // where the last non-whitespace character is...
            s = s.substring(0, i+1);
        }

        return s;
}

//ELIMINA OS ESPAÇOS À ESQUERDA :: REMOVE WHITESPACES TO THE LEFT
function LTrim(str)
/*
        PURPOSE: Remove leading blanks from our string.
        IN: str - the string we want to LTrim
*/
{
        var whitespace = new String(" \t\n\r");

        var s = new String(str);

        if (whitespace.indexOf(s.charAt(0)) != -1) {
            // We have a string with leading blank(s)...

            var j=0, i = s.length;

            // Iterate from the far left of string until we
            // don't have any more whitespace...
            while (j < i && whitespace.indexOf(s.charAt(j)) != -1)
                j++;


            // Get the substring from the first non-whitespace
            // character to the end of the string...
            s = s.substring(j, i);
        }

        return s;
}

//MUDA OS CHALKS NA VISUALIZAÇÃO DA LISTA :: CHANGE ICONS ON THE 'CHANGE ICON' BOX
function mudachalk(nome) {
   document.chalk.showchalk.src = nome+".gif";
   if (nome != "cpreview") {
     document.chalk.newchalknome.value = nome;
   } else document.chalk.newchalknome.value = "";
}

// GERA O CÓDIGO DO BLOGCHALK
// ALL NEXT FUNCTIONS GENERATES THE BLOGCHALK CODES AND THE FINAL PAGE
function codechalk() {

var fundot = "ffffff";
var barra = "/";
var ponto = ".";
var aspas = "&quo;";

// DESCOBRE QUAL O ÍCONE SELECIONADO :: FIND OUT WHAT ICON WAS SELECTED
chkArray = document.chalk.icon.length;

for(i=0;i<chkArray;i++) {
 if (document.chalk.icon[i].checked) {
   var chalk = document.chalk.icon[i].value;
 }
}

// DESCOBRE QUAL A COR DE FUNDO DO BLOG :: CHECK WHAT IS USER BLOG'S BACKGROUND COLOR
chkArray1 = document.chalk.backg.length;

for(j=0;j<chkArray1;j++) {
 if (document.chalk.backg[j].checked) {
   var back = document.chalk.backg[j].value;
 }
} 

if (back == "000000") {
  fundot = "aaaaaa";
}

// CAMPOS OBRIGATORIOS :: REQUIRED FIELDS
var country = document.chalk.country.value;
var state = document.chalk.state.value;
var city = document.chalk.city.value;
var neighbor = document.chalk.neighbor.value;
var language = document.chalk.language1.value;

var countrys = document.chalk.country.value;
var states = document.chalk.state.value;
var citys = document.chalk.city.value;
var neighbors = document.chalk.neighbor.value;
var languages = document.chalk.language1.value;

//REMOVE OS ESPAÇOS NAS EXTREMIDADES DOS CAMPOS :: REMOVE LEFT AND RIGHT WHITESPACES
states = RTrim(states);
states = LTrim(states);
citys = RTrim(citys);
citys = LTrim(citys);
neighbors = RTrim(neighbors);
neighbors = LTrim(neighbors);

var meta = "<meta name=&quot;blogchalk&quot; content=&quot;"+country;
var meta1 = ", "+city+", "+neighbor+", "+language;
var metaf = "&quot; />";

var post = "This is my new blogchalk:<br>&lt;b&gt;&lt;small&gt;"+country;
var post1 = ", "+city+", "+neighbor+", "+language;
var postf = ".&lt;/small&gt;&lt;/b&gt; :)";

var minitextoa1 = "";
var minitextoa2 = "";
var minitextoa12 = "";
var minitextoa22 = "";
var minitextob = "";
var minitextoe1 = "";
var minitextoe2 = "";
var minitexto = "This is my blogchalk:<br>"+country;
var minitexto1 = ", "+city+", "+neighbor+", "+language;

var altstate = "";

if (state != "" && state != "&nbsp;") {
 meta += ", "+state;
 post += ", "+state;
 minitexto += ", "+state;
}

meta += meta1;
post += post1;
minitexto += minitexto1;

if (states != "" && states != "&nbsp;") {
 altstate = states+"/";
}

// CAMPOS OPCIONAIS :: OPTIONAL FIELDS
var language2 = document.chalk.language2.value;
var name = document.chalk.name.value;
var gender = document.chalk.gender.value;
var age = document.chalk.age.value;
var interest1 = document.chalk.interest1.value;
var interest2 = document.chalk.interest2.value;

var language2s = document.chalk.language2.value;
var names = document.chalk.name.value;
var genders = document.chalk.gender.value;
var ages = document.chalk.age.value;

names = RTrim(names);
names = LTrim(names);

var altlan2 = "";

if (language2 != "" && language2 != "&nbsp;") {
 meta += ", "+language2;
 post += ", "+language2;
 minitexto += ", "+language2;
}
if (language2s != "" && language2s != "&nbsp;") {
 altlan2 = " and "+language2s;
}
if (name != "" && name != "&nbsp;") {
 meta += ", "+name;
 post += ", "+name;
 minitexto += ", "+name;
}
if (gender != "" && gender != "&nbsp;") {
 meta += ", "+gender;
 post += ", "+gender;
 minitexto += ", "+gender;
}
if (age != "" && age != "&nbsp;") {
 meta += ", "+age;
 post += ", "+age;
 minitexto += ", "+age;
}
if (interest1 != "" && interest1 != "&nbsp;") {
 meta += ", "+interest1;
 post += ", "+interest1;
 minitexto += ", "+interest1;
}
if (interest2 != "" && interest2 != "&nbsp;") {
 meta += ", "+interest2;
 post += ", "+interest2;
 minitexto += ", "+interest2;
}

meta += metaf;
post += postf;

// CAMPOS APENAS PARA ALT TEXT :: FIELDS ONLY FOR THE ALT TEXT
var connect = document.chalk.connect.value;
var ontime = document.chalk.ontime.value;

var alt = "";
var alt1 = "";

if (names != "" && genders != "" && ages != "") {
 alt1 = names+barra+genders+barra+ages+". ";
}
if (names != "" && genders != "" && ages == "") {
 alt1 = names+barra+genders+". ";
}
if (names != "" && genders == "" && ages != "") {
 alt1 = names+barra+ages+". ";
}
if (names == "" && genders != "" && ages != "") {
 alt1 = genders+barra+ages+". ";
}
if (names != "" && genders == "" && ages == "") {
 alt1 = names+". ";
}
if (names == "" && genders != "" && ages == "") {
 alt1 = genders+". ";
}
if (names == "" && genders == "" && ages != "") {
 alt1 = ages+". ";
}

var alt2 = "Lives in "+countrys+"/";
var alt2sta = citys+"/"+neighbors+", speaks "+languages;
var alt3 = "";
var alt4 = "";
var alt5 = "";
var alt6 = "";

if (ontime != "" && ontime != "&nbsp;") {
 var alt3 = ". Spends "+ontime+" of daytime online";
}
if (connect != "" && connect != "&nbsp;") {
 var alt4 = ". Uses a "+connect+" connection";
}
if (interest1 != "" && interest1 != "&nbsp;") {
 var alt5 = ". And likes "+interest1;
}
if (interest2 != "" && interest2 != "&nbsp;") {
 var alt6 = "/"+interest2;
}

alt += alt1+alt2+altstate+alt2sta+altlan2+alt3+alt4+alt5+alt6+ponto;

minitextoa1 = "<p style=&quot;font-size: 5pt; color: #";
minitextoa12 = "<p style='font-size: 5pt; color: #";
minitextoa2 = "; font-family: verdana&quot;>";
minitextoa22 = "; font-family: verdana'>";
minitextob = minitexto;
minitextoe1 = "<br><b>";
minitextoe2 = ".</b></p>";


// CRIA A PÁGINA HTML COM OS CÓDIGOS GERADOS :: GENERATES THE FINAL PAGE WITH CODES INSIDE IT
document.write ("<html><head><title>BlogChalking</title><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'><link rel=StyleSheet href='blogchalking.css' type='text/css'><script language=JavaScript src='blogchalking.js'></script></head><body bgcolor='#FFFFFF' text='#000000' leftmargin='10' topmargin='0' marginwidth='10' marginheight='0'><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr align='left' valign='middle'><td width='28%' align='center'><a href='http://www.blogchalking.tk'><br><img src='chalk.gif' border='0' align='absmiddle'></a>&nbsp;<font class='titulo'>BlogChalking</font><br><font color='#999999'>Collaboratively mapping weblogs<br>for smarter blogsearching.</font></td><td width='0%' bgcolor='#DDDDDD'><img src='trans.gif' border='0' width='1' height='1'></td><td width='0%' valign='top'><img src='trans.gif' width='6' height='1'></td><td width='72%' valign='top'><table width='100%' border='0' cellspacing='0' cellpadding='4'><tr align='left' valign='top'><td width='50%'><br><font class='rodape2'>1.</font><font class='titulo23'> <a href=javascript:popup('news','420','460');>What is new on blogChalking?</a></font><br><font class='xplan'>New website, new fields in the form, new icons, some information about results on Google, blogchalk-only search engine. Lots of things happened, dude. <a href=javascript:popup('news','420','460');>Click here to know.</a></font></td><td width='50%' align='right'><br><font class='rodape2'>Receive <a href='http://blogchalking.blogspot.com' target='blogcnews'>blogChalking news</a> in your email:<br></font><font class='rodape1'><input type='hidden' name='ID22' value='833'><input type='text' name='email22' value='' size='15' maxlength='100' class='bloglet'>&nbsp;<input type='submit' name='Submit22' value='subscribe' class='bloglet'><br>&nbsp;<a href='http://www.bloglet.com/' target='bloglet' class='bloglet1'>powered by Bloglet</a></font></td></tr></table></td></tr></table><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr align='left' valign='middle'><td width='28%' align='center'>&nbsp;</td><td width='0%' bgcolor='#DDDDDD'><img src='trans.gif' border='0' width='1' height='1'></td><td width='0%' valign='top'><img src='trans.gif' width='6' height='1'></td><td width='72%' valign='top'><table width='100%' border='0' cellspacing='0' cellpadding='4'><tr><td><br><font class='rodape2'>2.</font><font class='titulo23'> Done! Now just copy and paste these codes into your template!</font><br><font class='xplan'>Follow the instructions below to use the codes.<br>If you already did blogchalking, so paste these over the previous codes.</font></td></tr></table></td></tr></table><table border='0' cellspacing='0' cellpadding='0'><tr><td align='center' valign='top' bgcolor='#ffffff'><table width='70%' border='0' cellspacing='0' cellpadding='0'><tr><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td><td width='100%' bgcolor='#cccccc'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td></tr><tr><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td><td width='100%'><table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#efefef'><tr align='left' valign='top'><form name='codes'><td width='25%'><font class='rodape2'>A.</font> <b>META tag (Required)</b><br><font color='#777777'>Put it somewhere <b>between </b>the &lt;HEAD&gt; and &lt;/HEAD&gt; tags in your template.</font><br><br><textarea name='codemeta' cols='30' wrap='virtual' rows='8' onFocus='this.select();'>"+meta+"</textarea></td><td width='50%'><font class='rodape2'>B.</font> <b>Icon + Keywords (Required)</b><br><font color='#777777'>Put this in the body of your template (prefer higher areas of your blog, to make blogchalk more visible to search engines).</font><br><br><textarea name='codechalk' cols='68' wrap='virtual' rows='15' onFocus='this.select();'><!-- START OF BLOGCHALKING CODE -->"+minitextoa1+back+minitextoa2+"<a href=&quot;http://www.blogchalking.tk&quot; target=&quot;bc&quot;><img src=&quot;http://www.entrementes.net/blogchalking/"+chalk+".gif&quot; width=&quot;35&quot; height=&quot;30&quot; border=&quot;0&quot; alt=&quot;"+alt+"&quot; title=&quot;"+alt+"&quot; /></a>"+minitextoe1+minitextob+minitextoe2+"<!-- END OF BLOGCHALKING CODE --></textarea></td></tr></table></td><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td><td align='left' valign='top'><table border='0' cellspacing='0' cellpadding='5' width='100%'><tr align='left' valign='top'><td width='25%'><font class='rodape2'>C.</font> <b>Post (Optional)</b><br><font color='#777777'>Publish this phrase at your blog. This helps with indexation.</font><br><br><textarea name='codepost' cols='30' wrap='virtual' rows='8' onFocus='this.select();'>"+post+"</textarea></td></form></tr></table></td><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td></tr><tr><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td><td width='100%' bgcolor='#cccccc'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#cccccc' width='0%'><img src='trans.gif' width='1' height='1'></td></tr></table><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr align='left' valign='middle'><td width='28%' align='center'>&nbsp;</td><td width='0%' bgcolor='#DDDDDD'><img src='trans.gif' border='0' width='1' height='1'></td><td width='0%' valign='top'><img src='trans.gif' width='6' height='1'></td><td width='72%' valign='top'><table width='100%' border='0' cellspacing='0' cellpadding='4'><tr><td><br><font class='rodape2'>3.</font><font class='titulo23'> Some things you should know</font><br><font class='xplan'>Information about the codes, the icon and other things.</font></td></tr></table></td></tr></table><table width='98%' border='0' cellspacing='0' cellpadding='0'><tr><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td><td width='100%' bgcolor='#dddddd'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td></tr><tr><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td><td width='100%'><table width='100%' border='0' cellspacing='0' cellpadding='8'><tr align='left' valign='top'><td bgcolor='#"+fundot+"' width='21%'><font color='#0099cc'><b><font color='#666666'>This is your icon :)</font></b></font><!-- START OF BLOGCHALKING CODE -->"+minitextoa12+back+minitextoa22+"<a href='http://www.blogchalking.tk' target='bc'><img src='http://www.entrementes.net/blogchalking/"+chalk+".gif' width='35' height='30' border='0' alt='"+alt+"' title='"+alt+"'/></a>"+minitextoe1+minitextob+minitextoe2+"<!-- END OF BLOGCHALKING CODE --><font class='xplan'>1:Only the code looks big.<br><br>2: Google does NOT consider this spamming. I asked them.</font></td><td width='40%'><font color='#0099cc'><b>Will everybody see my information on the icon?</b></font><br><br>Icon works fine on browsers <img src='i-ie.gif' border='0'>&nbsp;<img src='i-op.gif' border='0'>&nbsp;<img src='i-mo.gif' border='0'><br>and its code is compatible with <i>XHTML</i> weblogs. So, your blogchalk will probably be seen in the majority of browsers.<br><br>However, there can be some problems for Mac users, because IE for Mac showed an unstable behavior when displaying ALT text.</td><td width='39%'><font color='#0099cc'><b>How many time until I get indexed?</b></font><br><br>After republish your blog with the codes inserted, you'll have to wait <b>some weeks</b> or a little bit more to be caught by a search engine. <a href='http://www.google.com' target='google'>Google</a> showed until now an unpredictable behaviour, but it is actually indexing some blogs. There are other search engines spidering blogchalks, as <a href='http://www.alltheweb.com' target='alltheweb'>All The Web</a> and <a href='http://www.daypop.com' target='daypop'>DayPop</a>. And some people are doing <a href='http://bstpierre.org/bc/' target='bstp'>search engines only for blogchalks</a>. So, do it and wait to be spidered. :)</td></tr></table></td><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td></tr><tr><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td><td width='100%' bgcolor='#dddddd'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td></tr></table><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr align='left' valign='middle'><td width='28%' align='center'>&nbsp;</td><td width='0%' bgcolor='#DDDDDD'><img src='trans.gif' border='0' width='1' height='1'></td><td width='0%' valign='top'><img src='trans.gif' width='6' height='1'></td><td width='72%' valign='top'><table width='100%' border='0' cellspacing='0' cellpadding='4'><tr><td><br><font class='rodape2'>4.</font><font class='titulo23'> Searching for BlogChalks</font><br><font class='xplan'>These are the ways we got for searching weblogs by region.</font></td></tr></table></td></tr></table><table width='60%' border='0' cellspacing='0' cellpadding='0'><tr><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td><td width='100%' bgcolor='#dddddd'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td></tr><tr><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td><td width='100%'><table width='100%' border='0' cellspacing='0' cellpadding='7'><tr><td><font color='#0099cc'><b>Blogchalk-only Search Engines:</b></font><br><br>By now, we have the <a href='http://bstpierre.org/bc' target='bstp'>Brian St. Pierre's Blogchalk Search</a>.<br><b>Please</b>, make their job easier by <a href='http://bstpierre.org/bc/chalksubmit.php' target='bcsub'>submitting here</a> your blog's address.<br><font color='#ff6600'><i></i></font><br><font color='#0099cc'><b>Chalked Search Engines (DayPop, All The Web, Google, etc.):</b></font><br><br>We use a &quot;command line&quot;, like that:<br><font color='#ff6600'><i>blogchalk</i> english united states new york queens</font><br><br>The standard is:<br><i>blogchalk language1 country city neighbor</i><br><br>And you can also insert the following keywords into the command line:<br><i>language2 gender age interest1 interest2 name</i><br><br>That's it, have a good search ;)</td></tr></table></td><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td></tr><tr><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td><td width='100%' bgcolor='#dddddd'><img src='trans.gif' width='1' height='1'></td><td bgcolor='#dddddd' width='0%'><img src='trans.gif' width='1' height='1'></td></tr></table></td></tr></table><br><br><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td bgcolor='#efefef'><img src='trans.gif' width='1' height='1'></td></tr></table><table width='100%' border='0' cellspacing='0' cellpadding='2'><tr valign='middle'><td align='left' width='99%'>&nbsp;<a href='http://www.useabandeira.com.br' target='ub'><img src='brflag.gif' width='16' height='10' align='absmiddle' border='0'></a>&nbsp;<font class='rodape1'>2002. Developed by <a href=javascript:popup('team','360','250');>BlogChalking Team</a>. Created by <a href='http://www.dpadua.tk' target='dpadua1'>Daniel P&aacute;dua</a>.</font></td><td align='left' width='1%'><a href='http://www.kit.net' target='kitnet'><img src='kitnet.gif' width='88' height='29' border='0'></a></td></tr></table><br></body></html>");

altchar();

}