// JavaScript Document

/*************************************************
功能：语言选择
参数：lan  所选择的语言简码
*************************************************/
function selMenu(level)
{
  createXMLHttpRequest();
  var url = "selMenu.php";
  var postValue = "menulevel=" + level;
  xmlHttp.open("POST", url, true);
  xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;");
  xmlHttp.send(postValue);
  
  xmlHttp.onreadystatechange = function () { 	
    if(xmlHttp.readyState == 4)
    {
	  if(xmlHttp.status == 200)
	  {
	    if(xmlHttp.responseText == "ok")
	    {
		  
		  //window.top.location.reload();
	    }
	  }
    }
  }
}
