// JavaScript Document

function initPage() {
	if (top.location != location) {
		top.location.href = document.location.href;
		return;
	}
	if (commentCount != null) {
		startMonitoring();
	}
	if (document.addcomment.text.defaultValue == '') document.addcomment.text.focus();
}

function ragnar() {
  r = document.getElementById('ragnar');
  if (r.style.display == 'none') r.style.display = '';
  else r.style.display = 'none';
}

var clickedComment = null;
function commentClick(comment) {
  if (clickedComment) clickedComment.style.border = 'none';
  comment.style.border = '#C5633E solid 1px';
  clickedComment = comment;	
}
