




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='7'>");
	document.writeln("<input type='hidden' name='aid' id='aid' value='244055'>");
	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='7'>");
	document.writeln("<input type='hidden' name='aid' id='aid' value='244055'>");
	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\">79<\/b> 条　<a href=\"http://comment.mop.com/comment.do?pid=7&aid=244055\">查看全部回复<\/a><\/div>")


document.writeln("<!--一组评论内容开始-->");
document.writeln("	<div class=\"pinglun_con\" onmouseover=\"mouseAComment('over','430')\" onmouseout=\"mouseAComment('out','430')\">");
document.writeln("    	<p class=\"pic\"><a href='http://hi.mop.com/profile2.do?id=358948449' 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-08-14 19:55:31　来自上海市");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">蹴鞠原来是这么回事<\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_430\">");
				
document.writeln("                <div class=\"kapian\"  style=\"margin-left:230px;\"><a href=\"javascript:void(0);\" onclick=\"share(7,244055);\">分享给好友<\/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_430\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",7,244055,430);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_430\">(45)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_430\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",7,244055,430);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_430\">(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','375')\" onmouseout=\"mouseAComment('out','375')\">");
document.writeln("    	<p class=\"pic\"><a href='http://hi.mop.com/profile2.do?id=353858943' target='_blank'><img src='http://hdn001.i.mop.com/photos/hdn001/20090806/17/37/tiny_9xQ4_10889g039124.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\" \/> 专业提供彩票号码　2009-08-08 09:45:54　来自中国");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">福彩3d第212期号码已公开<br/>专业提供:《福彩3d,双色球,排列3》准准准<br/>本期号码已公开，看号码请登入:www.v038.com<br/>福彩预测中心唯一指定授权客服电话:０１０-８９８６１３３３：联系QQ:601683333专业提供:福彩3d,双色球,预测服务 我公司以诚信的服务为理念,为彩民朋友提供最为准确的彩票预测资讯,精准的号码,助您走上成功之路!彩民应该知道所有的彩票都有的一个定律与规定：就是用大多数人的钱来积累在少数人的身上，这就是大家都知道输多赢少的根本原因！很多人都不懂得下注技巧和开奖规律，胡乱下注，所以逢买必输也是理所当然的了，其实，彩票中奖秘诀...也是人定律！！是人定律！在会员资料的预测方面，我们拥有十年的数据经验与三年的实践经验，同时拥有上百套万元以上的预测软件与海内外彩票学专家、数据学专家。 因此我们确信能为您提供最为准确彩票预测信息,&gt;&gt;&gt;3D直选每期3注,10期可以中到8期左右,不定位独胆每期准确可达到100%%中。联系人：王科长； <br/>福彩3D.双色球 领料电话:０１０-８９８６１３３３; <br/>资料如下请详细<br/>福 彩 3 D 213期 直 选 三 注 号 码 请联系：０１０-８９８６１３３３; 王科长<br/><br/>福 彩 3 D 212期 直 选 三 注 号 码 642一045一062 开:642 对<br/><br/>福 彩 3 D 211期 直 选 三 注 号 码 638一681一910 开:681 对<br/><br/>福 彩 3 D 210期 直 选 三 注 号 码 038一304一920 开:304 对 <br/><br/>福 彩 3 D 209期 直 选 三 注 号 码 154一186一801 开:154 对 <br/><br/>福 彩 3 D 208期 直 选 三 注 号 码 620一423一013 开:013 对 <br/><br/>福 彩 3 D 207期 直 选 三 注 号 码 612一367一506 开:367 对 <br/><br/>福 彩 3 D 206期 直 选 三 注 号 码 284一980一291 开:284 对 <br/><br/>福 彩 3 D 205期 直 选 三 注 号 码 901一831一381 开:083 错 <br/><br/>福 彩 3 D 204期 直 选 三 注 号 码 510一095一062 开:062 对 <br/><br/>福 彩 3 D 203期 直 选 三 注 号 码 830一017一307 开:830 对 <br/><br/>福 彩 3 D 202期 直 选 三 注 号 码 845一214一230 开:230 对 <br/><br/>郑重承诺:会员料准确率90% 以上,一星期内如连续出现三期错误公司无条件双倍赔偿!<br/>想要跟本公司合作的彩民必需做到以下三点:<br/>号码要进行绝对保密,讲信用,讲道德,讲义气,有胆量,<br/>只要您做到此三点，那我公司一定会给您一个意外的惊喜和收获！<br/>我们的服务目的是：将、最好、最精、最准、最可靠的资料奉献给广大彩民！ 为彩民朋友提供最为准确的彩票预测资讯,精准的号码,助您走上成功之路!(本广告长期有效)可长期来电!!!<br/><\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_375\">");
				
document.writeln("            	<div class=\"kapian\"><a href=\"http://hi.mop.com/profile2.do?id=353858943\" target=\"_blank\">查看照片<\/a><\/div>");
document.writeln("                <div class=\"kapian\"><a href=\"http://hi.mop.com/profile2.do?id=353858943\" target=\"_blank\">给TA留言<\/a><\/div>");
document.writeln("                <div class=\"kapian\"><a href=\"http://hi.mop.com/profile2.do?id=353858943\" target=\"_blank\">加为好友<\/a><\/div>");
document.writeln("                <div class=\"kapian\"><a href=\"javascript:void(0);\" onclick=\"share(7,244055);\">分享给好友<\/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_375\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",7,244055,375);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_375\">(32)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_375\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",7,244055,375);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_375\">(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','122')\" onmouseout=\"mouseAComment('out','122')\">");
document.writeln("    	<p class=\"pic\"><a href='http://hi.mop.com/profile2.do?id=352703724' 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\" \/> 8cmm　2009-07-14 23:25:22　来自北京市");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">大作。很有创意。<br/>www.setuzi.com情趣玩具店<\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_122\">");
				
document.writeln("                <div class=\"kapian\"  style=\"margin-left:230px;\"><a href=\"javascript:void(0);\" onclick=\"share(7,244055);\">分享给好友<\/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_122\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",7,244055,122);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_122\">(10)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_122\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",7,244055,122);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_122\">(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','107')\" onmouseout=\"mouseAComment('out','107')\">");
document.writeln("    	<p class=\"pic\"><a href='http://hi.mop.com/profile2.do?id=349727827' 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 21:09:09　来自江西省上饶市");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">什么叫国足?就是把中国的猪集合在一起集体踢球<\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_107\">");
				
document.writeln("                <div class=\"kapian\"  style=\"margin-left:230px;\"><a href=\"javascript:void(0);\" onclick=\"share(7,244055);\">分享给好友<\/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_107\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",7,244055,107);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_107\">(5)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_107\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",7,244055,107);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_107\">(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','90')\" onmouseout=\"mouseAComment('out','90')\">");
document.writeln("    	<p class=\"pic\"><img src='http://image2.mop.com/comment/images/ping_01.gif' width='50' height='50' /><\/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 07:28:02　来自黑龙江省佳木斯市");
document.writeln("            <\/div>");
document.writeln("            <div class=\"infor\">麦蒂，太不值了，病秧子<\/div>");
document.writeln("            ");
document.writeln("            <!--鼠标滑过时显示开始-->");
document.writeln("            <div class=\"left\"  style=\"display:none;\" id=\"hi_90\">");
				
document.writeln("                <div class=\"kapian\"  style=\"margin-left:230px;\"><a href=\"javascript:void(0);\" onclick=\"share(7,244055);\">分享给好友<\/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_90\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"up\",7,244055,90);'><b class=\"cyellow\">顶<\/b></a><span class=\"cyellow\" id=\"upnum_90\">(5)<\/span><\/div>");
document.writeln("                <div class=\"kapian\"><div class=\"ding_cai\" id=\"down_90\" style=\"display:none;\"></div><a href='javascript:void(0);' onclick='updown(\"down\",7,244055,90);'><b class=\"cblack\">踩<\/b></a><span id=\"downnum_90\">(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=7&aid=244055" target="_blank" class="cyellow"><span class="f12">已有评论(79)</span></a>　<a href="javascript:void(0);" onclick="share(7,244055);"><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("<!--操作失败弹出结束-->");