function editComment(id, pid) {
	$("#c" + id + " .text").html("\
		<form action='/calls/blogEditComment.php?cid=" + id + "&amp;pid=" + pid + "' method='post'>\
			<textarea style='width: 600px; height: 200px; display: block;' name='edit'>" + $("#c" + id + " .text").text() + "</textarea>\
			<input type='submit' value='bearbeiten' />\
		</form>");
}