/////////////////////////////////////////////////////////////////////////////
//                                                                         //
// Simples Mural em PHP                  sssssss kk  kkk 11111 5555555 ®   //
// Por ...::: BY SK15 ® :::..            sss     kk kkk  11111 555         //
//                                       sss     kkkkk     111 555         //
// E-mail: sk15@msn.com                  sssssss kkkkkk    111 5555555     //
// Site: http://www.BuscaWeb.clic3.net       sss kk  kkk   111 5555555     //
//                                           sss kk   kkk  111     555     //
//                                       sssssss kk    kkk 111 5555555     //
//                                                                         //
/////////////////////////////////////////////////////////////////////////////
function AddText(text){
if (document.mural.message.createTextRange && document.mural.message.caretPos){      
var caretPos = document.mural.message.caretPos;      
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ?
text + ' ' : text;
} 
else document.mural.message.value += text;  
}
function smiley(){
AddTxt=" :)";
AddText(AddTxt);
}
function wink(){
AddTxt=" ;)";
AddText(AddTxt);
}
function cheesy(){
AddTxt=" :D";
AddText(AddTxt);
}
function grin(){
AddTxt=" ;D";
AddText(AddTxt);
}
function angry(){
AddTxt=" ~(";
AddText(AddTxt);
}
function sad(){
AddTxt=" :(";
AddText(AddTxt);
}
function shocked(){
AddTxt=" :o";
AddText(AddTxt);
}
function cool(){
AddTxt=" 8)";
AddText(AddTxt);
}
function huh(){
AddTxt=" ???";
AddText(AddTxt);
}
function rolleyes(){
AddTxt=" ::/";
AddText(AddTxt);
}
function tongue(){
AddTxt=" :P";
AddText(AddTxt);
}
function embarassed(){
AddTxt=" :-[";
AddText(AddTxt);
}
function lipsrsealed(){
AddTxt=" :-X";
AddText(AddTxt);
}
function undecided(){
AddTxt=" :-/";
AddText(AddTxt);
}
function kiss(){
AddTxt=" :-*";
AddText(AddTxt);
}
function cry(){
AddTxt=" '(";
AddText(AddTxt);
}
