function popComments(place,name,width,height)
	{
		var properties = 'width='+width+',height='+height+',directories=no,history=no,statusbar=no,scrollbars=no,resizable=no,menubar=no,personalbar=no,toolbar=no,locationbar=no';
	
	msgWindow = window.open(
	  place,
	  name,
	  properties
	);
	msgWindow.focus();
}
