﻿var xmlHttp;
function createXmlHttp(){
if(window.XMLHttpRequest){
xmlHttp=new XMLHttpRequest();
}else{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
};
function vote(id,_2){
dojo.style(dojo.byId("CurrentRating"),{width:"0"});
if(typeof (dojo.byId("yuanyemian_opinionvalue"))=="object"){
if(dojo.byId("yuanyemian_opinionvalue").value=="1"){
showRatingInformation();
}else{
}
}
dojo.style(dojo.byId("CurrentRating"),{width:""+(20*_2)+"px"});
var _3=""+_2+"";
var _4="";
if(_3=="1"){
_4="难吃";
}else{
if(_3=="2"){
_4="不好吃";
}else{
if(_3=="3"){
_4="不错哦";
}else{
if(_3=="4"){
_4="挺好吃";
}else{
if(_3=="5"){
_4="超级好吃哇，荐";
}
}
}
}
}
console.log("diamond"+_2+"_hover,"+_4);
dojo.byId("theStarRatingForChineseDishInformation").setAttribute("value",""+_2+"");
dojo.byId("showRatingMessage").innerHTML="<span style='color:orange;'>您当前为菜品点评的星级级别是：<strong style='color:#FF3300;'>"+_2+" 星级-"+_4+"。</strong> </span><br />";
};
function showRating(){
if(xmlHttp.readyState==4){
}
};
function showRatingInformation(){
ShowDialog("<span style=color:black;>提示信息</span>","","width:300px;height:360px;","<div style=background-color:#ffffff;width:auto;height:auto;><span style=\"color: #666;\"><ul class=\"rating\"><li class=\"current-rating\" style=\"width:100px;\" id=\"CurrentRating\"></li></ul>点亮评星级权限说明：<span style=\"color:red;\"></span><br /><br />↑ 评星级选项，星级已经开发给所有的网站会员参与评星哦！<br /><br />↑ 如果您已经是痴心不改餐厅的老顾客，并且持有会员卡，请将会员卡上的卡号记下并绑定到您的网站会员帐号中，即可享受乐趣多多哦！<br /><br />详情如下：<br /><br /><a class=\"fontgreen\" href=\"/Details/DetailsInformation.Welcome?CokeMark=JPKOCNH\" target=\"_blank\"> 如何绑定会员卡到我的网站会员帐号下?</a><br /><br /><a class=\"fontgreen\" href=\"/Details/DetailsInformation.Welcome?CokeMark=JPIRFMN\" target=\"_blank\"> 如何办理餐厅会员卡?</a><br /><br /><a class=\"fontgreen\" href=\"/Details/DetailsInformation.Welcome?CokeMark=JPKORNJ\" target=\"_blank\"> 为何绑定不上我的已有卡号?</a></span></div>");
};


