




function checkForm() {
	var username = "";
	if(nickname=='') {
		 username = $("#username_0").val();
		 
		 username = username.replace(/^[\n|\r\n]*|[\n|\r\n]*$/g, '');
		 if(username == '') {
		 	popMsg('请输入昵称');
		 	return false;
		 }
	}
	
	var msg = $("#content").val();
	msg = $.trim(msg);
	if(msg == '') {
		popMsg("请输入评论内容");
		return false;
	}
	return true;
}

var lastBg = ""; 
function mouseAComment(action, id) {
	if(action == 'over') {
		$("#hi_"+id).show();
		lastBg = $("commentRoot_"+id).css("background");
		$("commentRoot_"+id).css("background","#f7f7f7");
	} else if(action == 'out') {
		$("#hi_"+id).hide();
		$("commentRoot_"+id).css("background",lastBg);
	}
}

function popMsg(content, title) {
	$("#popContent").html(content);
	if(title) {
		$("#popTitle").html(title);
	}
	
	$("#popDiv").css("left", (document.body.clientWidth / 2 -$("#popDiv").width() / 2 - 50) + "px");
    $("#popDiv").css("top", (((document.documentElement.scrollTop == 0) ? document.body.scrollTop : document.documentElement.scrollTop) + ((document.documentElement.clientHeight == 0) ? document.body.clientHeight : document.documentElement.clientHeight) / 2 - $("#popDiv").height() / 2) + "px");
	
	$("#popDiv").show();
}

function share(pid, aid) {
	if(nickname == '') {
		popMsg("您还未登陆，无法分享新闻给好友");
		return;
	} else {
		popMsg("您已分享新闻给好友","操作成功");
		var i = new Image();
		i.src="http://comment.mop.com/zixun/zixunShare.do?pid="+pid+"&aid="+aid+"&r="+Math.random();
	}
	
}

function updown(action, pid, aid, id) {
	//播放动画
	var html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="60" height="80">\
		<param name="movie" value="http://image2.mop.com/comment/images/'+action+'.swf" />\
		<param name="quality" value="high" />\
        <param name="wmode" value="transparent" />\
		<embed src="http://image2.mop.com/comment/images/'+action+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="60" height="80"></embed>\
		</object>';
	$("#"+action+"_"+id).html(html).show("fast");
	
	setTimeout('$("#'+action+'_'+id+'").hide()',1500);

	// 数字加1
	var reg = new RegExp("\\((.*?)\\)");
	var numStr = reg.exec($("#"+action+"num_"+id).html())[1];
	var num = parseInt(numStr);
	num++;
	$("#"+action+"num_"+id).html("("+ num +")");
	
	//发送请求
	var i = new Image();
	i.src="http://comment.mop.com/zixun/zixunUpDown.do?action="+action+"&pid="+pid+"&aid="+aid+"&id="+id+"&r="+Math.random();
}


document.writeln("<!--评论开始-->");
document.writeln("<div class=\"blank16\"><\/div>");
document.writeln("<div class=\"clearit\" style=\"border-top:1px solid #e3e3e3;\"><\/div>");
document.writeln("");
document.writeln("<div class=\"blank16\"><\/div>");
document.writeln("<h5 class=\"titleh5\">我也说两句<\/h5>");
document.writeln("");
document.writeln("<div class=\"clearit\"><\/div>");

if(nickname == "") {
	document.writeln("<!--登录前开始-->");
	document.writeln("<form id='commentform' name='commentform' method='post' action='http://comment.mop.com/zixun/zixunCommentAdd.do' onSubmit=\"document.charset='utf-8'; return checkForm();\" accept-charset=\"utf-8\">" );
	document.writeln("<input type='hidden' name='head' id='head' value=''>");
	document.writeln("<input type='hidden' name='pid' id='pid' value='3'>");
	document.writeln("<input type='hidden' name='aid' id='aid' value='378189'>");
	document.writeln("<input type='hidden' name='from' id='aid' value='"+ document.location.href +"'>");
	document.writeln("	<div><span class=\"denglu_befor\"><a href=\"http://passport.mop.com/register\">还没有注册？<\/a><\/span><\/div>");
	document.writeln("	<div class=\"blank4\"><\/div>");
	document.writeln("	<div class=\"pic_member\">");
	document.writeln("		<p><a href=\"#\"><img src=\"http:\/\/image2.mop.com\/comment\/images\/ping_01.gif\" \/><\/a><\/p>");
	document.writeln("	    <h2><a href=\"#\">猫扑网友<\/a><\/h2>");
	document.writeln("	<\/div>");
	document.writeln("	");
	document.writeln("	<div class=\"pinglun_kuang\">");
	document.writeln("		<textarea id=\"content\" name=\"content\" cols=\"\" rows=\"\"><\/textarea>");
	document.writeln("	    <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
	document.writeln("	  	<tr>");
	document.writeln("	    <td>昵称：<input type=\"text\" id=\"username_0\" name=\"username\"  class=\"inputy\"  style=\"background:#fff\" \/> 密码：<input name=\"password\" type=\"password\" id=\"password_0\"  class=\"inputy\"  style=\"background:#fff\" \/><\/td>");
	document.writeln("	    <td>&nbsp;<\/td>");
	document.writeln("	    <td width=\"15\"><input type=\"checkbox\" name=\"top\" value=\"true\" id=\"top_0\"  \/><\/td>");
	document.writeln("	    <td width=\"75\">使用MP置顶<\/td>");
	document.writeln("	    <td width=\"80\"><input type=\"image\" src=\"http:\/\/image2.mop.com\/comment\/images\/ping_02.gif\" \/><\/td>");
	document.writeln("	  	<\/tr>");
	document.writeln("		<\/table>");
	document.writeln("	");
	document.writeln("	<\/div>");
	document.writeln("	");
	document.writeln("	<div class=\"blank8\"><\/div>");
	document.writeln("	<div class=\"blank16\"><\/div>");
	document.writeln("	<div class=\"clearit\" style=\"border-top:1px solid #e3e3e3;\"><\/div>");
	document.writeln("	");
	document.writeln("	");
	document.writeln("	<\/form>");
	document.writeln("	<!--登录前结束-->");
} else {
	document.writeln("<!--登录后开始-->");
	document.writeln("<form id='commentform' name='commentform' method='post' action='http://comment.mop.com/zixun/zixunCommentAdd.do' onSubmit=\"document.charset='utf-8'; return checkForm();\" accept-charset=\"utf-8\">");
	document.writeln("<input type='hidden' name='head' id='head' value='"+ Hi_USER.headUrl +"'>");
	document.writeln("<input type='hidden' name='pid' id='pid' value='3'>");
	document.writeln("<input type='hidden' name='aid' id='aid' value='378189'>");
	document.writeln("<input type='hidden' name='from' id='aid' value='"+ document.location.href +"'>");
	document.writeln("	<div class=\"denglu_after\">登录:"+loginTimes+"次　MP:"+mp+" <a href=\"http://passport.mop.com/Logout?backUrl="+escape(document.location.href)+"\"><img src=\"http:\/\/image2.mop.com\/comment\/images\/ping_04.gif\" \/><\/a><\/div>");
	document.writeln("	<div class=\"blank4\"><\/div>");
	document.writeln("	<div class=\"pic_member\">");
	document.writeln("		<p><a href=\"http://hi.mop.com/\"><img src=\""+ Hi_USER.headUrl +"\" \/><\/a><\/p>");
	document.writeln("	    <h2><a href=\"http://hi.mop.com/\">"+nickname+"<\/a><\/h2>");
	document.writeln("	<\/div>");
	document.writeln("	");
	document.writeln("	<div class=\"pinglun_kuang\">");
	document.writeln("		<textarea id=\"content\" name=\"content\" cols=\"\" rows=\"\"><\/textarea>");
	document.writeln("	    <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
	document.writeln("	  	<tr>");
	document.writeln("	    <td width=\"15\" align=\"left\">&nbsp;<\/td>");
	document.writeln("	    <td width=\"30\">&nbsp;<\/td>");
	document.writeln("	    <td>&nbsp;<\/td>");
	document.writeln("	    <td>&nbsp;<\/td>");
	document.writeln("	    <td width=\"15\"><input type=\"checkbox\" value=\"true\" name=\"top\" id=\"top_0\" \/><\/td>");
	document.writeln("	    <td width=\"75\">使用MP置顶<\/td>");
	document.writeln("	    <td width=\"80\"><input type=\"image\" src=\"http:\/\/image2.mop.com\/comment\/images\/ping_02.gif\" \/><\/td>");
	document.writeln("	  	<\/tr>");
	document.writeln("		<\/table>");
	document.writeln("	<\/div>");
	document.writeln("<div class=\"blank8\"><\/div>");
	document.writeln("<div class=\"blank16\"><\/div>");
	document.writeln("<div class=\"clearit\" style=\"border-top:1px solid #e3e3e3;\"><\/div>")
	document.writeln("	<\/form>");
}

document.writeln("<div class=\"blank8\"><\/div>");
document.writeln("<!--评论内容开始-->");
document.writeln("<div class=\"cgery textrig\">已有评论 <b class=\"cyellow\">5<\/b> 条　<a href=\"http://comment.mop.com/comment.do?pid=3&aid=378189\">查看全部回复<\/a><\/div>")


document.writeln("<!--一组评论内容开始-->");
document.writeln("	<div class=\"pinglun_con\" onmouseover=\"mouseAComment('over','293')\" onmouseout=\"mouseAComment('out','293')\">");
document.writeln("    	<p class=\"pic\"><a href='http://hi.mop.com/profile2.do?id=353443068' target='_blank'><img src='http://image2.mop.com/comment/images/ping_01.gif' width='50' height='50' /></a><\/p>");
document.writeln("        <div class=\"content_pl\">");
document.writeln("        	<div class=\"member_infor\">");
document.writeln("            <img src=\"http://image2.mop.com/comment/images\/ping_05.gif\" \/> bobosiji1982　2009-07-13 18:54:58　来自广东省广州市");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">我是一个非常传统的人,却也是思想最前沿的人. 对于文中的女主角真是\"怒其不争,哀其不幸\"<br/>古人有云:\"将加人,先问己,己不欲,即速己\" 且不可将这么严重的侮辱加在一个男人头上, 且不说孩子究竟是否是如歌的, 当时你背着你老公与如歌鬼混的时候, 就已经犯下弥天大祸. 这个罪孽,今生你是逃不过了, 内心的愧疚早以在你心中留下抹不去的烙印. 真是不幸啊, 你一个人犯的错误要你老公,你儿子以及你前男友来偿还, 你自己更是每天痛不欲生, 好可怜.   如果孩子是你丈夫的,那你的罪孽还减轻不少. 古人有云:\"不孝有三,无后为大\" 如果孩子是如歌的, 那你就害你丈夫无后,不孝, 成为家族罪人, 你丈夫实在很冤枉.  他比你可怜多.  于心何忍啊<br/>给你一帖解药, 如果能瞒就瞒一辈子, 再与你丈夫生一个小孩,弥补罪过, 独自承受孽债, 瞒不了的话, 不要有任何怨言, 坦诚面对, 兴许还能得到你丈夫的宽恕.<br/>多行善事, 切莫做恶.<\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_293\">");
				
document.writeln("                <div class=\"kapian\"  style=\"margin-left:230px;\"><a href=\"javascript:void(0);\" onclick=\"share(3,378189);\">分享给好友<\/a><\/div>");
            	
document.writeln("          	<\/div>");
document.writeln("            <!--鼠标滑过时显示结束-->");
document.writeln("            ");
document.writeln("            <div class=\"right\">");
document.writeln("            	<div class=\"kapian\"><div class=\"ding_cai\" id=\"up_293\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",3,378189,293);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_293\">(1)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_293\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",3,378189,293);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_293\">(0)<\/span><\/div>");
document.writeln("          <\/div>");
document.writeln("            ");
document.writeln("        <\/div>");
document.writeln("    <\/div>");
document.writeln("	<!--一组评论内容结束-->")

document.writeln("<!--一组评论内容开始-->");
document.writeln("	<div class=\"pinglun_con\" onmouseover=\"mouseAComment('over','265')\" onmouseout=\"mouseAComment('out','265')\">");
document.writeln("    	<p class=\"pic\"><a href='http://hi.mop.com/profile2.do?id=351935812' target='_blank'><img src='http://image2.mop.com/comment/images/ping_01.gif' width='50' height='50' /></a><\/p>");
document.writeln("        <div class=\"content_pl\">");
document.writeln("        	<div class=\"member_infor\">");
document.writeln("            <img src=\"http://image2.mop.com/comment/images\/ping_05.gif\" \/> 新用户注册被占了　2009-07-12 22:15:45　来自辽宁省朝阳市");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">快看看。。中国使用人最多的浏览器！ http://www.ip27.cn/1_13_322528.aspx 免费设计个性签名,炫出自我.. http://www.130132.cn/0_6_322528.aspx 中国唯一ONS交友社区 http://www.130132.cn/0_5_322528.aspx 精彩宽频影视，体验无限快感！ http://www.130132.cn/0_4_322528.aspx <\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_265\">");
				
document.writeln("                <div class=\"kapian\"  style=\"margin-left:230px;\"><a href=\"javascript:void(0);\" onclick=\"share(3,378189);\">分享给好友<\/a><\/div>");
            	
document.writeln("          	<\/div>");
document.writeln("            <!--鼠标滑过时显示结束-->");
document.writeln("            ");
document.writeln("            <div class=\"right\">");
document.writeln("            	<div class=\"kapian\"><div class=\"ding_cai\" id=\"up_265\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",3,378189,265);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_265\">(1)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_265\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",3,378189,265);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_265\">(0)<\/span><\/div>");
document.writeln("          <\/div>");
document.writeln("            ");
document.writeln("        <\/div>");
document.writeln("    <\/div>");
document.writeln("	<!--一组评论内容结束-->")

document.writeln("<!--一组评论内容开始-->");
document.writeln("	<div class=\"pinglun_con\" onmouseover=\"mouseAComment('over','931')\" onmouseout=\"mouseAComment('out','931')\">");
document.writeln("    	<p class=\"pic\"><a href='http://hi.mop.com/profile2.do?id=345952686' target='_blank'><img src='http://hdn001.i.mop.com/photos/hdn001/20090719/19/14/tiny_eJ5u_7151j039124.jpg' width='50' height='50' /></a><\/p>");
document.writeln("        <div class=\"content_pl\">");
document.writeln("        	<div class=\"member_infor\">");
document.writeln("            <img src=\"http://image2.mop.com/comment/images\/ping_05.gif\" \/> 泡沫momo　2009-07-25 00:44:37　来自江苏省苏州市");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">科学证实，孩子会和女人的第一个男人很像，无论那孩子是不是那男人的。。。<\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_931\">");
				
document.writeln("            	<div class=\"kapian\"><a href=\"http://hi.mop.com/profile2.do?id=345952686\" target=\"_blank\">查看照片<\/a><\/div>");
document.writeln("                <div class=\"kapian\"><a href=\"http://hi.mop.com/profile2.do?id=345952686\" target=\"_blank\">给TA留言<\/a><\/div>");
document.writeln("                <div class=\"kapian\"><a href=\"http://hi.mop.com/profile2.do?id=345952686\" target=\"_blank\">加为好友<\/a><\/div>");
document.writeln("                <div class=\"kapian\"><a href=\"javascript:void(0);\" onclick=\"share(3,378189);\">分享给好友<\/a><\/div>");
				
document.writeln("          	<\/div>");
document.writeln("            <!--鼠标滑过时显示结束-->");
document.writeln("            ");
document.writeln("            <div class=\"right\">");
document.writeln("            	<div class=\"kapian\"><div class=\"ding_cai\" id=\"up_931\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",3,378189,931);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_931\">(0)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_931\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",3,378189,931);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_931\">(0)<\/span><\/div>");
document.writeln("          <\/div>");
document.writeln("            ");
document.writeln("        <\/div>");
document.writeln("    <\/div>");
document.writeln("	<!--一组评论内容结束-->")

document.writeln("<!--一组评论内容开始-->");
document.writeln("	<div class=\"pinglun_con\" onmouseover=\"mouseAComment('over','857')\" onmouseout=\"mouseAComment('out','857')\">");
document.writeln("    	<p class=\"pic\"><a href='http://hi.mop.com/profile2.do?id=346695554' target='_blank'><img src='http://hdn001.i.mop.com/photos/hdn001/20090714/21/21/tiny_jw8t_202c039124.jpg' width='50' height='50' /></a><\/p>");
document.writeln("        <div class=\"content_pl\">");
document.writeln("        	<div class=\"member_infor\">");
document.writeln("            <img src=\"http://image2.mop.com/comment/images\/ping_05.gif\" \/> 醉爱bird　2009-07-23 20:26:22　来自江苏省苏州市");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">...婚外恋都很正常，何况那是你婚前的事，你怕个什么<br/>也太保守了吧<br/>你老公受不了大不了就离婚，真真傻得可以<\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_857\">");
				
document.writeln("            	<div class=\"kapian\"><a href=\"http://hi.mop.com/profile2.do?id=346695554\" target=\"_blank\">查看照片<\/a><\/div>");
document.writeln("                <div class=\"kapian\"><a href=\"http://hi.mop.com/profile2.do?id=346695554\" target=\"_blank\">给TA留言<\/a><\/div>");
document.writeln("                <div class=\"kapian\"><a href=\"http://hi.mop.com/profile2.do?id=346695554\" target=\"_blank\">加为好友<\/a><\/div>");
document.writeln("                <div class=\"kapian\"><a href=\"javascript:void(0);\" onclick=\"share(3,378189);\">分享给好友<\/a><\/div>");
				
document.writeln("          	<\/div>");
document.writeln("            <!--鼠标滑过时显示结束-->");
document.writeln("            ");
document.writeln("            <div class=\"right\">");
document.writeln("            	<div class=\"kapian\"><div class=\"ding_cai\" id=\"up_857\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",3,378189,857);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_857\">(0)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_857\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",3,378189,857);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_857\">(0)<\/span><\/div>");
document.writeln("          <\/div>");
document.writeln("            ");
document.writeln("        <\/div>");
document.writeln("    <\/div>");
document.writeln("	<!--一组评论内容结束-->")

document.writeln("<!--一组评论内容开始-->");
document.writeln("	<div class=\"pinglun_con\" onmouseover=\"mouseAComment('over','286')\" onmouseout=\"mouseAComment('out','286')\">");
document.writeln("    	<p class=\"pic\"><a href='http://hi.mop.com/profile2.do?id=349313218' target='_blank'><img src='http://image2.mop.com/comment/images/ping_01.gif' width='50' height='50' /></a><\/p>");
document.writeln("        <div class=\"content_pl\">");
document.writeln("        	<div class=\"member_infor\">");
document.writeln("            <img src=\"http://image2.mop.com/comment/images\/ping_05.gif\" \/> hjh7941　2009-07-13 11:51:48　来自福建省泉州市");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">我是福建的一个平凡的女人，在经营安溪特产茶叶，我相信成功只属于努力的人！<br/>主要有你们的支持我就会成功.每次接到一个客户，不管买多买少，都是我最开心的事！为自己加油吧,<br/>我们以直销的方式，改变了传统经营方式,减少中间环节，<br/>降低了您的购买成本，让您通过我们喝上最纯正、最实惠的茶叶<br/>我们是货到在付款的, 产地直销,诚信为本,全国送货<br/>现在起订购2斤茶叶可以送半斤!，数量有限！<br/>现在生活不容易 希望大家多多支持 联系Q，869058829<br/><\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_286\">");
				
document.writeln("                <div class=\"kapian\"  style=\"margin-left:230px;\"><a href=\"javascript:void(0);\" onclick=\"share(3,378189);\">分享给好友<\/a><\/div>");
            	
document.writeln("          	<\/div>");
document.writeln("            <!--鼠标滑过时显示结束-->");
document.writeln("            ");
document.writeln("            <div class=\"right\">");
document.writeln("            	<div class=\"kapian\"><div class=\"ding_cai\" id=\"up_286\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",3,378189,286);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_286\">(0)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_286\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",3,378189,286);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_286\">(0)<\/span><\/div>");
document.writeln("          <\/div>");
document.writeln("            ");
document.writeln("        <\/div>");
document.writeln("    <\/div>");
document.writeln("	<!--一组评论内容结束-->")


var ht = '&nbsp;&nbsp;<a href="http://comment.mop.com/comment.do?pid=3&aid=378189" target="_blank" class="cyellow"><span class="f12">已有评论(5)</span></a>　<a href="javascript:void(0);" onclick="share(3,378189);"><img src="http://image2.mop.com/comment/images/ping_00.gif" style="vertical-align:middle;" /></a>';
document.getElementById('title_comment').innerHTML = ht;



document.writeln("<!--操作失败弹出开始-->");
document.writeln("<div class=\"pop\" style=\"width:350px;display:none;\" id=\"popDiv\">");
document.writeln("	<div class=\"contentk\">");
document.writeln("   	  <div class=\"pad5\">");
document.writeln("  		<h1 class=\"title_sm\"><span><img src=\"http:\/\/image2.mop.com\/comment\/images\/ping_16.gif\" style=\"cursor:pointer\" onclick=\"$(\'#popDiv\').hide();\" \/><\/span><b id=\"popTitle\"><img src=\"http:\/\/image2.mop.com\/comment\/images\/ping_18.gif\" \/> 操作失败<\/b><\/h1>");
document.writeln("    	");
document.writeln("        <div class=\"informp\" id=\"popContent\">您的MP不足50，<a href=\"#\" style=\"text-decoration:underline;\">点击这里即可轻松获得MP！<\/a><br \/>");
document.writeln("<a href=\"#\" style=\"text-decoration:underline;\">查看这里<\/a> 了解更多MP信息<\/div>");
document.writeln("        ");
document.writeln("		<div class=\"blank4\"><\/div>");
document.writeln("    	<\/div>");
document.writeln("	<\/div>");
document.writeln("  <div class=\"clearit\"><\/div>");
document.writeln("<\/div>");
document.writeln("<!--操作失败弹出结束-->");