if(name.length &&
function publish(name,comment){
$.post('shoutbox/publish.php', {name: name, comment: comment}, function(){
nameElement.val("");
commentElement.val("");
load();
});
}