// JavaScript Document

function openComments(url)
{
comments = window.open(url, "Comment", "location=1,menubar=0,resizable=0,scrollbars=1,width=400,height=450");
comments.focus();
comments.moveTo(200,200);
}


