// $Id: comment.js $
// $Date: 2010-01-14 $

var new_comment_window;
function openCommentWindow(url)
{
	new_comment_window=window.open(url,'name',
	'height=620,width=600,left=50,top=50,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes');

	if (window.focus) {new_comment_window.focus()}
}
