function addcomment(entrydate) {
window.open("commentform.php?blog=" + entrydate, 'commentsbox','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=750,height=340')
}

function addyoursay() {
window.open("yoursayform.php", 'yoursaybox','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=750,height=370')
}

function popup(url,width,height,scrollbars) {
window.open(url, 'photo','toolbar=0,scrollbars='+scrollbars +',location=0,statusbar=0,menubar=0,resizable=0,width=' + width + ',height=' + height + ',left = 400,top = 50')
}

function insert(smiley){
if (document.selection) {
document.form.comment.focus();
sel = document.selection.createRange();
    sel.text = smiley;
}
}