function showAddComment()
{
	document.getElementById("addcommentform").style.display = 'block';
	document.getElementById("addcomment").style.display = 'none';
	
	if (document.getElementById('vNameInput')) {
		focusTo('vNameInput');
	} else {
		focusTo('vBody');
	}
}

function deleteComment(idComment, iAlbumID) 
{
	if (confirm(NAOZAJ_ZMAZAT_TENTO_ODKAZ + '?'))
	{
		window.location = '/album/album.php?vAlbumID=' + iAlbumID + '&vDeleteCommentID=' + idComment;
	}
}

function telladmin(idMessage, iAlbumID, sReferer) {
	if (confirm(NAOZAJ_TENTO_PRISPEVOK_NIE_JE_GRATULACIA_A_MA_BYT_ZMAZANY + '?')) {
		window.location = "?vCommentToDelete=" + idMessage + "&vAlbumID=" + iAlbumID + "&vReferer=" + escape(sReferer);
	}
}
