// JavaScript Document

function showAddComment()
{	document.getElementById("commentform").style.visibility = "visible";
	document.getElementById("commentform").style.position = "relative";
	
	document.getElementById("showcommentlink").innerHTML = '<img src="/images/icon_comment_delete.gif" />Hide Add Comment';
	document.getElementById("showcommentlink").href = 'javascript:hideAddComment();';
}

function hideAddComment()
{	document.getElementById("commentform").style.visibility = "hidden";
	document.getElementById("commentform").style.position = "absolute";
	
	document.getElementById("showcommentlink").innerHTML = '<img src="/images/icon_comment_add.gif" />Add Comment';
	document.getElementById("showcommentlink").href = 'javascript:showAddComment();';
}


function submitVote( num )
{	document.getElementById("rating").value = num;
	document.ratingform.submit();
	
	return false;
}
