function poppage(id) {
	pop_width	= 450;
	pop_height	= 500;
	cur_width	= screen.width - 20;
	cur_height	= screen.height - 20;
	X_pos		= (cur_width-pop_width)/2;
	Y_pos		= (cur_height-pop_height)/2;
	pop = window.open("http://www.orendin.com/comment.php?id="+id,'send','scrollbars=no,width='+pop_width+',height='+pop_height+',left='+X_pos+',top='+Y_pos);
	pop.focus();
}