function showList(showName)
{
    var showAll=['detail','others','record'];
    if(showName=="detail")
    {
        for(var i=0;i<showAll.length;i++)
        {
            document.getElementById(showAll[i]).style.display="";
            document.getElementById(showAll[i]+"_head").style.display="";
            document.getElementById(showAll[i]+"_show").className="";
        }
        document.getElementById("others_head").style.display="none";
        document.getElementById("others").style.display="none";
		document.getElementById("record_head").style.display="none";
        document.getElementById("record").style.display="none";
        
        document.getElementById(showName+"_show").className="li_here";
    }
    else
    {
        for(i=0;i<showAll.length;i++)
        {
            document.getElementById(showAll[i]).style.display="none";
            document.getElementById(showAll[i]+"_head").style.display="none";
            document.getElementById(showAll[i]+"_show").className="";
        }
        if(!g_isSnapshot)
        {
            document.getElementById("message_head").style.display="none";
            document.getElementById("message").style.display="none";
        }
        if(document.getElementById("commend"))
        document.getElementById("commend").style.display="none";
        document.getElementById(showName).style.display="block";
        document.getElementById(showName+"_show").className="li_here";
    }
}
function showExchangeList(str)
{
    document.getElementById("html_tem_exchangeLog").innerHTML=str;
    g_isHaveRate=true;
}