
var commentPage;
var commentAddress;
function ShowComments(commentAddress)
{
if(commentPage)
	if(commentPage.closed)
		commentPage = window.open(commentAddress,"Comments");
	else
		commentPage.focus();
else
	commentPage = window.open(commentAddress,"Comments");
}
