function saveComment(){

document.getElementById('submit').value="Saving Comment...";
document.getElementById('submit').disabled="true";
gbxAjaxReq('', 'false', '../savecomment.php', 'topic=' + document.getElementById('topic').value + '&comment=' + document.getElementById('comment').value);
document.getElementById('submit').value="Post Comment";
document.getElementById('submit').disabled="false";

}

function deleteComment(id){

gbxAjaxReq('', 'false', '../deletecomment.php', 'id=' + id);
var commentid = 'c_' + id;
Effect.SlideUp(commentid);

}

function goHome(){

window.location = "http://lifeminusbox.com";

}
