function link(){ 
var link = prompt("Type in the location here \n(EXAMPLE: http://www.yahoo.com)","http://"); 
var name = prompt("Type the text to display here \n (EXAMPLE: Click Here!)","Click Here"); 
var themessage = "<a href=" + link + " target=_blank>" + name + "</a>"; 
document.theform.blogspaceone.value += themessage;
document.theform.blogspaceone.focus(); 
}

function image(){ 
var image = prompt("Type in the location of the image here \n(EXAMPLE: http://www.yahoo.com)","http://"); 
var themessage = "<img src=" + image + " >"; 
document.theform.blogspaceone.value += themessage;
document.theform.blogspaceone.focus(); 
}

function smile(str)
{
var a = "link a";
var b = "link b";
    // Append the string str to the message text.
    document.theform.blogspaceone.value += str;
    // Send the focus back to the message box.
    document.theform.blogspaceone.focus();
}
