function docomment()
	{
		var oElement = window.event.srcElement.parentElement;
		do
		{
			oElement = oElement.previousSibling;
		} while (oElement.id == null)
		document.articleform.url.value = oElement.href;
		document.articleform.title.value = oElement.innerText;
		document.articleform.submit();

	}
document.write("<form target=_blank name=\"articleform\" action=\"http://bbs.chinadaily.com.cn/articlecmt.shtml\" method=\"post\">");
document.write("<input type=\"hidden\" name=\"url\">");
document.write("<input type=\"hidden\" name=\"title\">");
document.write("</form>");
