function PopupWindow(D){if(typeof (PopupWindow._initialized)=="undefined"){PopupWindow.currentLayer=1;PopupWindow.prototype._init=function(B){for(var A in B){this[A]=B[A]}if(!this.windowId){this.windowId="Iori"}if(!this.container){this.container=document.body}if(!this.mode){this.mode=0}if(this.mode==2&&(typeof (this.paramString)=="undefined")){this.paramString=""}if(!this.area){this.area=0}if(typeof (this.windowCSS)=="undefined"){this.windowCSS=(this.area==0?"w_278 p_alert":"sys_tip w340")}if(typeof (this.barCSS)=="undefined"){this.barCSS=(this.area==0?"alpha30black3":"tr")}if(typeof (this.showCarpet)=="undefined"){this.showCarpet=true}if(!this.showPosition){this.showPosition=0}if(!this.width){this.width=0}if(!this.height){this.height=0}if(typeof (this.top)=="undefined"){this.top=-1}if(typeof (this.left)=="undefined"){this.left=-1}if(typeof (this.mobile)=="undefined"){this.mobile=true}if(this.mode==3){this.showPosition=0;if(typeof (this.zIndex)=="undefined"){this.zIndex=10}if(typeof (this.boxType)=="undefined"){this.boxType=1}if(typeof (this.okText)=="undefined"){this.okText="确定"}if((this.boxType==2)&&(typeof (this.cancelText)=="undefined")){this.cancelText="取消"}}if(!this.windowColor){this.windowColor=""}if(typeof (this.autogeny)=="undefined"){this.autogeny=true}if(typeof (this.suicide)=="undefined"){this.suicide=true}this.timeoutId=null;this.alive=false};PopupWindow.prototype._render=function(){if(this.showCarpet){if(typeof (PopupWindow["carpet"+PopupWindow.currentLayer.toString()])=="undefined"){this.carpet=new Carpet({carpetId:this.windowId+"-Carpet",zIndex:(this.zIndex-1)||0,autogeny:this.autogeny,suicide:false});PopupWindow["carpet"+PopupWindow.currentLayer.toString()]=this.carpet}else{this.carpet=PopupWindow["carpet"+PopupWindow.currentLayer.toString()];this.carpet.setZindex(this.zIndex-1)}}this._createWindow();if(this.mode>0){if(this.mode==4){this.setWholeContent(this.contentString)}else{this._createBar();this._createContent()}}this.alive=true};PopupWindow.prototype.setWholeContent=function(A){this.window.innerHTML=A};PopupWindow.prototype._createWindow=function(){if(this.mode==0){if(!this.mainDiv){throw new Error('Mode0 must have a "mainDiv" argument !')}else{if(this.mainDiv.parentNode){this.mainDiv.parentNode.removeChild(this.mainDiv)}this.window=this.mainDiv}}else{this.window=document.createElement("DIV")}this.window.id=this.windowId;if(typeof (this.zIndex)!="undefined"){this.window.style.position="absolute";this.window.style.zIndex=this.zIndex}if(this.width>0){this.window.style.width=this.width+"px"}if(this.height>0){this.window.style.height=this.height+"px"}if(this.area==0){}else{if(this.windowColor.length>0){this.window.style.background=this.windowColor}}this.window.className=this.windowCSS;if(this.area==0){if(!this.onlySelfCss){this.window.className+=" popupwindow"}}else{if(!this.onlySelfCss){this.window.className+=" popupwindow2"}}this.window.style.display="none";this.container.appendChild(this.window);this.window.hide=function(){C.hide()}};PopupWindow.prototype._createBar=function(){this.bar=document.createElement("DIV");this.bar.id=this.windowId+"-Bar";this.bar.className=this.barCSS;if(this.mobile){this.bar.style.cursor="move";this._onDraggingHandler=this._onDragging.bindAsEventListener(this);this._onDragEndHandler=this._onDragEnd.bindAsEventListener(this);Event.observe(this.bar,"mousedown",this._onDragStart.bindAsEventListener(this))}this.closeIMG=document.createElement("IMG");this.closeIMG.src="/images/close.gif";this.closeIMG.alt="关闭";this.closeIMG.title="关闭";Event.observe(this.closeIMG,"click",this.hide.bindAsEventListener(this));var A=document.createElement("A");A.appendChild(this.closeIMG);this.bar.appendChild(A);this.window.appendChild(this.bar)};PopupWindow.prototype._onDragStart=function(A){this.lastMouseX=A.clientX;this.lastMouseY=A.clientY;Event.observe(document.body,"mousemove",this._onDraggingHandler);Event.observe(document.body,"mouseup",this._onDragEndHandler);return false};PopupWindow.prototype._onDragging=function(A){this.window.style.left=(parseInt(this.window.style.left)+A.clientX-this.lastMouseX)+"px";this.window.style.top=(parseInt(this.window.style.top)+A.clientY-this.lastMouseY)+"px";this.lastMouseX=A.clientX;this.lastMouseY=A.clientY;return false};PopupWindow.prototype._onDragEnd=function(){Event.stopObserving(document.body,"mousemove",this._onDraggingHandler);Event.stopObserving(document.body,"mouseup",this._onDragEndHandler)};PopupWindow.prototype._createContent=function(){switch(this.mode){case 1:if(!this.paramDiv){throw new Error('Mode1 must have a "paramDiv" argument !')}else{if(this.paramDiv.parentNode){this.paramDiv.parentNode.removeChild(this.paramDiv)}this.content=this.paramDiv}break;case 2:if(typeof (this.paramString)=="undefined"){throw new Error('Mode2 must have a "paramString" argument !')}else{this.content=document.createElement("DIV");this.content.id=this.windowId+"-Content";this.content.innerHTML=this.paramString}break;case 3:if(typeof (this.tipString)=="undefined"){throw new Error('Mode3 must have a "tipString" argument !')}else{this.content=document.createElement("DIV");this.content.id=this.windowId+"-Content";var B=document.createElement("P");B.id=this.windowId+"-Tip";this.tip=B;B.className="bold";B.innerHTML=this.tipString;this.content.appendChild(B);if(typeof (this.descriptionString)!="undefined"){B=document.createElement("DIV");B.id=this.windowId+"-Description";this.description=B;B.innerHTML=this.descriptionString;this.content.appendChild(B)}if(this.area==0){if(this.boxType>0){B=document.createElement("P");this.okButton=document.createElement("input");this.okButton.id=this.windowId+"-OK";this.okButton.type="button";this.okButton.className="btn08";this.okButton.value="确 定";Event.observe(this.okButton,"click",this.hide.bindAsEventListener(this));B.appendChild(this.okButton);if(this.boxType==2){this.cancelButton=document.createElement("input");this.cancelButton.id=this.windowId+"-Cancel";this.cancelButton.type="button";this.cancelButton.className="btn09";this.cancelButton.value="取 消";this.cancelButton.onmouseover=function(){this.className="btn08"};this.cancelButton.onmouseout=function(){this.className="btn09"};Event.observe(this.cancelButton,"click",this.hide.bindAsEventListener(this));B.appendChild(this.cancelButton)}this.content.appendChild(B)}var F=document.createElement("DIV");F.className="clear";this.content.appendChild(F)}else{if(this.boxType>0){var A=document.createElement("DIV");A.className="mt20";this.okButton=document.createElement("INPUT");this.okButton.id=this.windowId+"-OK";this.okButton.type="button";this.okButton.value=this.okText;this.okButton.className="btn03";A.appendChild(this.okButton);if(this.okLink){this.okButton.onclick=function(E){window.location.href=E}.bind(this,this.okLink)}else{Event.observe(this.okButton,"click",this.hide.bindAsEventListener(this))}if(this.boxType==2){this.cancelButton=document.createElement("INPUT");this.cancelButton.id=this.windowId+"-Cancel";this.cancelButton.type="button";this.cancelButton.value=this.cancelText;this.cancelButton.className="btn02";this.cancelButton.onmouseover=function(){this.className="btn03"};this.cancelButton.onmouseout=function(){this.className="btn02"};if(this.cancelLink){this.cancelButton.onclick=function(E){window.location.href=E}.bind(this,this.cancelLink)}else{Event.observe(this.cancelButton,"click",this.hide.bindAsEventListener(this))}A.appendChild(this.cancelButton)}this.content.appendChild(A)}}}break}this.window.appendChild(this.content)};PopupWindow.prototype.show=function(){if(this.showCarpet){this.carpet.show();PopupWindow.currentLayer++}this.window.style.display="block";switch(this.showPosition){case 0:Event.observe(window,"resize",this._onWindowResizeHandler);this.setCenter();break;case 1:var A=this.evtCaller?this.evtCaller:GetEvent();this.window.style.left=A.clientX+"px";this.window.style.top=A.clientY+"px";break;case 2:if(this.left>-1){this.window.style.left=this.left+"px"}if(this.top>-1){this.window.style.top=this.top+"px"}break}Event.observe(document.body,"keydown",this._onBodyKeyDownHandler);this.window.focus()};PopupWindow.prototype.hide=function(){if(this.beforeCloseCallback){this.beforeCloseCallback()}Event.stopObserving(document.body,"keydown",this._onBodyKeyDownHandler);if(this.showCarpet){this.carpet.hide();PopupWindow.currentLayer--}if(this.showPosition==0){Event.stopObserving(window,"resize",this._onWindowResizeHandler)}this.window.style.display="none";if(this.suicide){this.container.removeChild(this.window);this.alive=false}if(typeof (this.iframe)!="undefined"){this.iframe.style.display="none"}};PopupWindow.prototype.setCenter=function(){var H;var G;var A;var B;if(window.innerHeight){H=window.innerWidth;G=window.pageXOffset;A=window.innerHeight;B=window.pageYOffset}else{H=document.documentElement.offsetWidth;G=document.documentElement.scrollLeft;A=document.documentElement.offsetHeight;B=document.documentElement.scrollTop}this.window.style.left=(G+(H-this.window.offsetWidth)/2)+"px";this.window.style.top=(B+(A-this.window.offsetHeight)/2)+"px"};PopupWindow.prototype._onKeyDown=function(A){if(A.keyCode==27){this.hide()}};PopupWindow.prototype.appendHandler=function(B,A){if(this.mode==3&&this.boxType>0){if(B=="ok"){Event.observe(this.okButton,"click",A)}if(B=="cancel"&&this.boxType==2){Event.observe(this.cancelButton,"click",A)}}};PopupWindow.prototype.removeHandler=function(B,A){if(this.mode==3&&this.boxType>0){if(B=="ok"){Event.stopObserving(this.okButton,"click",A)}if(B=="cancel"&&this.boxType==2){Event.stopObserving(this.cancelButton,"click",A)}}};PopupWindow.prototype.setTip=function(A){if(this.mode==3){this.tip.innerHTML=A}};PopupWindow.prototype.setDescription=function(A){if(this.mode==3){this.description.innerHTML=A}};PopupWindow.prototype.setContent=function(A){if(this.mode>0){this.content.innerHTML=A}};PopupWindow.prototype.setWindow=function(A){this.window.innerHTML=A};PopupWindow.prototype.setTimeoutHide=function(A){clearTimeout(this.timeoutId);this.timeoutId=setTimeout(this.hide.bind(this),A)};PopupWindow.prototype.appendCloseIMGHandler=function(A){Event.observe(this.closeIMG,"click",A)};PopupWindow._initialized=true}this._onWindowResizeHandler=this.setCenter.bindAsEventListener(this);this._onBodyKeyDownHandler=this._onKeyDown.bindAsEventListener(this);this._init(D);this._render();if(this.autogeny){this.show()}var C=this;if(this.autogeny){this.window.focus()}}function Carpet(B){if(typeof (Carpet._initialized)=="undefined"){Carpet.prototype._init=function(D){for(var A in D){this[A]=D[A]}if(typeof (this.autogeny)=="undefined"){this.autogeny=true}if(typeof (this.suicide)=="undefined"){this.suicide=true}};Carpet.prototype._render=function(){this.carpet=document.createElement("DIV");this.carpet.id=this.carpetId;var A=this.carpet.style;A.zIndex=this.zIndex;A.position="absolute";A.margin="0px";A.padding="0px";A.top=(this.top||0)+"px";A.left=(this.left||0)+"px";A.width=(this.width||((document.body.clientWidth&&(document.body.clientWidth>screen.width))?document.body.clientWidth:screen.width))+"px";A.height=(this.height||((document.body.clientHeight&&(document.body.clientHeight>screen.height))?document.body.clientHeight:screen.height))+"px";A.background="#FFFFFF";A.filter="alpha(opacity=80)";A.opacity=0.8;A.zoom=1;A.display="none";document.body.appendChild(this.carpet)};Carpet.prototype.getCarpet=function(){return this.carpet};Carpet.prototype.show=function(){var G=document.getElementsByTagName("SELECT");var A;for(var H=0;H<G.length;H++){A=G[H].ispop||G[H].getAttribute("ispop");if(!A){G[H].style.visibility="hidden"}}var F=$$("embed");F.each(function(C){C.hide()});this.carpet.style.display="block"};Carpet.prototype.hide=function(){var G=document.getElementsByTagName("SELECT");var A;for(var H=0;H<G.length;H++){A=G[H].ispop||G[H].getAttribute("ispop");if(!A){G[H].style.visibility="visible"}}var F=$$("embed");F.each(function(C){C.show()});this.carpet.style.display="none";if(this.suicide){document.body.removeChild(this.carpet)}};Carpet.prototype.setZindex=function(A){this.carpet.style.zIndex=A};Carpet._initialized=true}this._init(B);this._render()}var errorMessageBoxDisplayArea=null;function setErrorMessage(B){if(errorMessageBoxDisplayArea==null){createBoxOnLoad()}errorMessageBoxDisplayArea.setWindow('<a href="#" title="关闭"><img src="/images/close_g.gif" alt="关闭" onclick="javascript:errorMessageBoxDisplayArea.hide();" /></a><span class="bold">'+B+"</span>");errorMessageBoxDisplayArea.show();errorMessageBoxDisplayArea.setTimeoutHide(5000)}function createBoxOnLoad(){var B=document.createElement("DIV");B.style.width=390+"px";B.innerHTML='<a href="#" title="关闭"><img src="/images/close_g.gif" alt="关闭" onclick="javascript:errorMessageBoxDisplayArea.hide();" /></a><span class="bold"></span>';errorMessageBoxDisplayArea=new PopupWindow({windowId:"errorWindow",container:document.getElementById("errorContainer"),mainDiv:B,showCarpet:false,windowColor:"",windowCSS:"greenbox ml40",autogeny:false,suicide:false,area:1,showPosition:3})}function GetEvent(){if(window.event||document.all){return window.event}var C=GetEvent.caller;while(C!=null){var D=C.arguments[0];if(D){if(D.constructor==Event||D.constructor==MouseEvent){return D}}C=C.caller}return null}function $dialog(F,H,G,E){(function(){var A=new PopupWindow({windowId:"dialog",mode:3,area:1,windowCSS:"sys_tip w340",barCSS:"tr",boxType:2,tipString:F,descriptionString:H});if(G){A.appendHandler("ok",G)}if(E){A.appendHandler("cancle",E)}})()}function $alert(F,D,E){(function(){var A=new PopupWindow({windowId:"alert",mode:3,area:1,windowCSS:"sys_tip w340",barCSS:"tr",tipString:F,descriptionString:"<p>"+D+"</p>",boxType:1});if(!Mtime.isEmpty(E)){A.appendHandler("ok",E);A.appendCloseIMGHandler(E)}})()}var _vote_Result={Vote:function(D,E,F){return Mtime.Component.Ajax.callBack("Mtime.Community.Controls.CommunityPages.VoteResult","Vote",[D,E],F,"/vote/VoteResult.m?Ajax_CallBack=true","post","10000")}};var _vote_checkboxCounter;function _vote_submit(D,E){_vote_init(E);for(key in _vote_checkboxCounter){if(_vote_checkboxCounter[key]==0){var F=new PopupWindow({windowId:"msgBox",mode:3,area:1,tipString:"",descriptionString:'<p class="bold">有未投票的题目</p>',boxType:1});return false}}_vote_Result.Vote(D,Form.serialize(E),_vote_callback);return false}function _vote_callback(E){var D=window.location.href;switch(E.value[1]){case"vote":var F=new PopupWindow({windowId:"msgBox",mode:3,area:1,tipString:"",okText:"查看结果",descriptionString:'<p class="bold">'+E.value[2]+"</p>",boxType:2});F.appendHandler("ok",function(){location.href="/vote/"+E.value[0]+".html"});break;case"userinfo":var F=new PopupWindow({windowId:"msgBox",mode:3,area:1,tipString:"",descriptionString:'<p class="bold">'+E.value[2]+"</p>",boxType:1});F.appendHandler("ok",function(){location.href="/vote/"+E.value[0]+"/userinfo.html?returnURL="+D});break;default:var F=new PopupWindow({windowId:"msgBox",mode:3,area:1,tipString:"",descriptionString:'<p class="bold">'+E.value[2]+"</p>",boxType:1});break}}function _vote_check(G,F,H){_vote_init(G.form);_vote_checkboxCounter["T"+F]+=G.checked?1:-1;if(H==-1){return }if(_vote_checkboxCounter["T"+F]==H){var E=document.getElementsByName(G.name);for(i=0;i<E.length;i++){if(!E[i].checked){E[i].disabled=true}}}else{if(_vote_checkboxCounter["T"+F]==H-1){var E=document.getElementsByName(G.name);for(i=0;i<E.length;i++){E[i].disabled=false}}}}function _vote_init(D){if(_vote_checkboxCounter==undefined){_vote_checkboxCounter=new Object();var C=D.getElementsByTagName("input");for(i=0;i<C.length;i++){if(C[i].type=="checkbox"||C[i].type=="radio"){_vote_checkboxCounter["T"+C[i].name.substr(3)]=0}}}};document.write('<form onsubmit="return _vote_submit(10028, this);">');
document.write('<div class="vote_mtime">');
document.write('<h4>中影-Mtime《梅兰芳》有奖调查问卷</h4>');
document.write('<p class="mt10"></p>');
document.write('<div class="mt20">1. 梅兰芳是谁？</div>');
document.write('<p><input type="radio" name="_vs10128" value="10855" onclick="_vote_check(this, 10128, -1);" /> 不知道</p>');
document.write('<p><input type="radio" name="_vs10128" value="10856" onclick="_vote_check(this, 10128, -1);" /> 耳熟</p>');
document.write('<p><input type="radio" name="_vs10128" value="10857" onclick="_vote_check(this, 10128, -1);" /> 香港女歌星</p>');
document.write('<p><input type="radio" name="_vs10128" value="10858" onclick="_vote_check(this, 10128, -1);" /> 京剧旦角大师</p>');
document.write('<div class="mt20">2. 梅兰芳曾是中国第一个国际明星，对此您是否了解？</div>');
document.write('<p><input type="radio" name="_vs10135" value="10882" onclick="_vote_check(this, 10135, -1);" /> 知道</p>');
document.write('<p><input type="radio" name="_vs10135" value="10883" onclick="_vote_check(this, 10135, -1);" /> 没听说过</p>');
document.write('<div class="mt20">3. 您对梅兰芳的电影是否感兴趣？</div>');
document.write('<p><input type="radio" name="_vs10136" value="10884" onclick="_vote_check(this, 10136, -1);" /> 不感兴趣</p>');
document.write('<p><input type="radio" name="_vs10136" value="10885" onclick="_vote_check(this, 10136, -1);" /> 很好奇</p>');
document.write('<p><input type="radio" name="_vs10136" value="10886" onclick="_vote_check(this, 10136, -1);" /> 有大明星就会看</p>');
document.write('<p><input type="radio" name="_vs10136" value="10887" onclick="_vote_check(this, 10136, -1);" /> 只要电影精彩就会看</p>');
document.write('<div class="mt20">4. 您希望电影《梅兰芳》在今年什么时候上映？</div>');
document.write('<p><input type="radio" name="_vs10137" value="10888" onclick="_vote_check(this, 10137, -1);" /> 10月10日</p>');
document.write('<p><input type="radio" name="_vs10137" value="10889" onclick="_vote_check(this, 10137, -1);" /> 11月5日</p>');
document.write('<p><input type="radio" name="_vs10137" value="10890" onclick="_vote_check(this, 10137, -1);" /> 12月12日</p>');
document.write('<p><input type="radio" name="_vs10137" value="10891" onclick="_vote_check(this, 10137, -1);" /> 12月20日</p>');
document.write('<div class="mt20">5. 您认为《梅兰芳》能获得口碑票房双赢吗？</div>');
document.write('<p><input type="radio" name="_vs10138" value="10892" onclick="_vote_check(this, 10138, -1);" /> 口碑应该不错，票房不好说</p>');
document.write('<p><input type="radio" name="_vs10138" value="10893" onclick="_vote_check(this, 10138, -1);" /> 票房能大卖，口碑未必好</p>');
document.write('<p><input type="radio" name="_vs10138" value="10894" onclick="_vote_check(this, 10138, -1);" /> 口碑票房都能取得成功</p>');
document.write('<p><input type="radio" name="_vs10138" value="10895" onclick="_vote_check(this, 10138, -1);" /> 口碑票房都不会好</p>');
document.write('<div class="mt20">6. 电影《梅兰芳》导演陈凯歌曾经的作品，您最欣赏下面哪一部？</div>');
document.write('<p><input type="radio" name="_vs10139" value="10896" onclick="_vote_check(this, 10139, -1);" /> 《荆轲刺秦王》</p>');
document.write('<p><input type="radio" name="_vs10139" value="10897" onclick="_vote_check(this, 10139, -1);" /> 《黄土地》</p>');
document.write('<p><input type="radio" name="_vs10139" value="10898" onclick="_vote_check(this, 10139, -1);" /> 《孩子王》</p>');
document.write('<p><input type="radio" name="_vs10139" value="10899" onclick="_vote_check(this, 10139, -1);" /> 《霸王别姬》</p>');
document.write('<p><input type="radio" name="_vs10139" value="10900" onclick="_vote_check(this, 10139, -1);" /> 《和你在一起》</p>');
document.write('<p><input type="radio" name="_vs10139" value="10901" onclick="_vote_check(this, 10139, -1);" /> 《无极》</p>');
document.write('<div class="mt20">7. 您认为《梅兰芳》能否超越《霸王别姬》？</div>');
document.write('<p><input type="radio" name="_vs10140" value="10902" onclick="_vote_check(this, 10140, -1);" /> 不会超越</p>');
document.write('<p><input type="radio" name="_vs10140" value="10903" onclick="_vote_check(this, 10140, -1);" /> 应该也会同样精彩</p>');
document.write('<p><input type="radio" name="_vs10140" value="10904" onclick="_vote_check(this, 10140, -1);" /> 好看就行，能否超越无所谓</p>');
document.write('<p><input type="radio" name="_vs10140" value="10905" onclick="_vote_check(this, 10140, -1);" /> 两部影片没有可比性</p>');
document.write('<div class="mt20">8. 对黎明出演梅兰芳怎么看？</div>');
document.write('<p><input type="radio" name="_vs10141" value="10906" onclick="_vote_check(this, 10141, -1);" /> 气质相符，非常期待</p>');
document.write('<p><input type="radio" name="_vs10141" value="10907" onclick="_vote_check(this, 10141, -1);" /> 怀疑演技能否令人满意</p>');
document.write('<p><input type="radio" name="_vs10141" value="10908" onclick="_vote_check(this, 10141, -1);" /> 希望能达到张国荣的水准</p>');
document.write('<p><input type="radio" name="_vs10141" value="10909" onclick="_vote_check(this, 10141, -1);" /> 不报有任何希望</p>');
document.write('<div class="mt20">9. 您对章子怡在《梅兰芳》中有何期待？</div>');
document.write('<p><input type="radio" name="_vs10142" value="10910" onclick="_vote_check(this, 10142, -1);" /> 明星风采一定要看</p>');
document.write('<p><input type="radio" name="_vs10142" value="10911" onclick="_vote_check(this, 10142, -1);" /> 对章子怡唱京剧很好奇</p>');
document.write('<p><input type="radio" name="_vs10142" value="10912" onclick="_vote_check(this, 10142, -1);" /> 将成为她表演新的里程碑</p>');
document.write('<p><input type="radio" name="_vs10142" value="10913" onclick="_vote_check(this, 10142, -1);" /> 怀疑演技，不报希望</p>');
document.write('<div class="mt20">10. 您对《梅兰芳》的票房预期是？</div>');
document.write('<p><input type="radio" name="_vs10143" value="10914" onclick="_vote_check(this, 10143, -1);" /> 5000万以下</p>');
document.write('<p><input type="radio" name="_vs10143" value="10915" onclick="_vote_check(this, 10143, -1);" /> 5000万-1亿</p>');
document.write('<p><input type="radio" name="_vs10143" value="10916" onclick="_vote_check(this, 10143, -1);" /> 1亿-2亿</p>');
document.write('<p><input type="radio" name="_vs10143" value="10917" onclick="_vote_check(this, 10143, -1);" /> 2亿以上</p>');
document.write('<p class="pt10">');
document.write('<input type="submit" value="投&nbsp;票" class="btn08" /> ');
document.write('【<a href="/vote/10028.html" target="_blank">查看结果</a>】');
document.write('</p>');
document.write('<p>本投票起止时间：2008-09-28 至 2008-10-15 </p>');
document.write('</div>');
document.write('</form>');
