function ShowComments(id) {
document.getElementById('comment_openlink_'+id).style.display='none';
document.getElementById('comment_closelink_'+id).style.display='block';
document.getElementById('comment_block_'+id).style.display='block';
}
function HideComments(id) {
document.getElementById('comment_openlink_'+id).style.display='block';
document.getElementById('comment_closelink_'+id).style.display='none';
document.getElementById('comment_block_'+id).style.display='none';
}
function ShowSmileys(id) {
 hidden = open('smileys.php?page_id='+id,'nooms_smileys_'+id,'top=30,left=30,width=400,height=450,status=no,resizable=no,scrollbars=yes');
}
