//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 provide the name of your country...');
		chalk.country.focus();
	return false;
	}
	if (document.chalk.city.value=="") {
		alert('You forgot to provide the name of your city...');
		chalk.city.focus();
	return false;
	}
	if (document.chalk.language1.value=="") {
		alert('You forgot to provide 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 language = document.chalk.language1.value;

var countrys = document.chalk.country.value;
var states = document.chalk.state.value;
var citys = document.chalk.city.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);

var meta = "<meta name=&quot;blogchalk&quot; content=&quot;"+country;
var meta1 = ", "+city+", "+language;
var metaf = "&quot; />";

var post = "This is my new blogchalk:<br>&lt;b&gt;&lt;small&gt;"+country;
var post1 = ", "+city+", "+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+", "+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 eyes = document.chalk.eyes.value;
var bodytype = document.chalk.bodytype.value;
var attitude = document.chalk.attitude.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+", speaks "+languages;
var alt3 = "";
var alt4 = "";
var alt5 = "";
var alt6 = "";
var alt7 = "";
var alt8 = "";

if (eyes != "" && eyes != "&nbsp;") {
 var alt3 = ". Eye color is "+eyes+"";
}

if (bodytype != "" && bodytype != "&nbsp;") {
 var alt7 = ". I am "+bodytype+"";
}

if (attitude != "" && attitude != "&nbsp;") {
 var alt8 = ". I am also "+attitude+"";
}

if (interest1 != "" && interest1 != "&nbsp;") {
 var alt5 = ". My interests are "+interest1;
}
if (interest2 != "" && interest2 != "&nbsp;") {
 var alt6 = "/"+interest2;
}

alt += alt1+alt2+altstate+alt2sta+altlan2+alt3+alt7+alt8+alt5+alt6+ponto;

minitextoa1 = "<p style=&quot;font-size: 6pt; color: #";
minitextoa12 = "<p style='font-size: 6pt; 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.com/index.html'><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'> What is new on blogChalking?</font><br><font class='xplan'>A little more sexy!!!  Now you can chalk more about yourself--your eye color, your body type, and even describe your personality!<br>New and Improved...Give it a try, it's painless and FREE!</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='titulo23b'> <strong>Done!</strong> Now just copy and paste the code below into your template!</font><br><font class='xplan'>Follow the instructions below to use the necessary code.<br>If you have previously setup blogchalking please paste the new code over your old, previous code.</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 anywhere in between the &lt;BODY&gt; and &lt;/BODY&gt; tags of your template.  In order to make your blogchalk more visible to search engines you should place this as close to your first &lt;BODY&gt; tag as possible.</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.com&quot; target=&quot;bc&quot;><img src=&quot;http://www.blogchalking.com/media/"+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'>You can publish this phrase at your blog. This helps with indexing.</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.com' target='bc'><img src='http://www.blogchalking.com/media/"+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: Simply cut and paste the code into your blog so others can find you via blog compliant search engines.</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>  <font class='titulo23b'>Please note</font>:  If you used<font class='titulo23b'> Netscape </font>to generate your BlogChalk you may need to edit the code above as necessary so that your description will read correctly.  As long as you edit anything after the ALT tag in the required code above you will be just fine.  This only occurs when you leave some of the optional fields blank so just delete any extra slashes, commas, or words in any part of the code as needed.  In any event, please keep the edit consistent with the BlogChalk format to preserve a standard for later searching of BlogChalked sites.<br><br>There can be some problems for Mac users, because IE for Mac has shown an unstable behavior when displaying ALT text.</td><td width='39%'><font color='#0099cc'><b>How long until I am indexed?</b></font><br><br>After your blog is published with the codes inserted, you'll have to wait <b>a few weeks</b>, or a little bit more, in order to be spidered by a search engine. <a href='http://www.google.com' target='google'>Google</a> shows unpredictable behavior, 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 current implementations 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</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;<font class='rodape1'>2003-2006</font></td><td align='left' width='1%'><a href='http://www.blogger.com/start' target='kitnet'><img src='blogger-simple-kahki.gif' width='88' height='30' border='0'></a></td></tr></table><br></body></html>");

altchar();

}