function popPrint(conID) {
	settings='width=500,height=500,top=100,left=100,scrollbars=yes,location=no,directories=no,status=no,menubar=yes,toolbar=no,resizable=no';
	var follow = 'script/printContent.php?conID='+conID;
	win=window.open(follow,'Content',settings);
	win.focus();
}
function popCommCon(ID) {
	settings='width=500,height=500,top=100,left=100,scrollbars=yes,location=no,directories=no,status=yes,menubar=yes,toolbar=no,resizable=no';
	var follow = 'script/commentContent.php?ID='+ID;
	win=window.open(follow,'CommentContent',settings);
	win.focus();
}
function popCommImg(ID) {
	settings='width=500,height=500,top=100,left=100,scrollbars=yes,location=no,directories=no,status=yes,menubar=yes,toolbar=no,resizable=no';
	var follow = 'script/displayImage.php?imgID='+ID;
	win=window.open(follow,'CommentImage',settings);
	win.focus();
}
