<!--美食、购物排行榜-->
function index(showContent,selfObj)
{
	// 操作标签
	var tag = document.getElementById("index_right_padding_padding_title").getElementsByTagName("li");
	var taglength = tag.length;
	for(i=0; i<taglength; i++)
	{
			tag[i].className = "";
	}
	selfObj.parentNode.className = "selectTag";
	
	// 操作内容
	var tagpad =  document.getElementById("index_right_padding_padding_comm").getElementsByTagName("ul");
	for(i=0; j=tagpad[i]; i++)
	{
		j.style.display = "none";
	}
	tagpad[showContent].style.display = "block";
}


function ShowDialog( surroNo,iW,iH)
{ 
var iWidth=iW; //窗口宽度
var iHeight=iH;//窗口高度
var iTop=(window.screen.height-iHeight)/2;
var iLeft=(window.screen.width-iWidth)/2;
var url = "/page160/callCenter.php?surroNo=" + surroNo;
window.showModalDialog(url,window,"dialogHeight: "+iHeight+"px; dialogWidth: "+iWidth+"px; dialogTop: "+iTop+"; dialogLeft: "+iLeft+"; resizable: no; status: no;scroll:no");
}