﻿function showComment(ID) {
	Comment = document.getElementById(ID);
	if (Comment.className=="comment-off") { 
	  Comment.className="comment-on"; 
	} 
	else { 
	  Comment.className="comment-off"; 
	} 
}