	function jumpMenu(Url)
	{
	window.location=Url;
	}
	


function Winopen(P_Url,width,height)  
{
	var iTop=(window.screen.height-height)/2;
	var iLeft=(window.screen.width-width)/2;
	window.open(P_Url,"newWin","resizable=no,width="+width+",height="+height+",top="+iTop+",left="+iLeft+",scrollbars=yes");
};
	//显示酒店介绍信息
	function showContent()
	{
		document.getElementById("lblSimpleIntro").style.display="none";
		document.getElementById("lblIntro").style.display="";
	}
	
	//显示点评参照的层
	function ShowPointsDiv(oInputSrc)
	{
		if(oInputSrc) 
		{
			var GradeDiv = document.getElementById("Points");
			GradeDiv.style.pixelLeft = PointsPos(oInputSrc,"Left");
			GradeDiv.style.pixelTop = PointsPos(oInputSrc,"Top") + oInputSrc.offsetHeight;
			GradeDiv.style.display="";	
		}
	}
	
	function PointsPos(el,ePro)
	{
		var ePos=0;
		while(el!=null)
		{		
			ePos+=el["offset"+ePro];
			el=el.offsetParent;
		}
		return ePos;
	}
	function ReplaceDot(ObjFrom){
		ObjFrom.innerHTML=ObjFrom.innerHTML.replace(/(，|;|；| |　|·|、)/g,',')
		ObjFrom.innerHTML=ObjFrom.innerHTML.replace(/(,{2,})/g,',')
	}
	function Replace(ThisV){
		ThisV.value=ThisV.value.replace(/(，|;|；| |　|·|、)/g,',')
		ThisV.value=ThisV.value.replace(/(,{2,})/g,',')
	}