/*************************************************
功能：链接
参数：label  标签
     line   路径
*************************************************/
function selUrl(label, line)
{
  createXMLHttpRequest();
  var url = "selUrl.php";
  var postValue = "label=" + label;
  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.location.href = line;
	    }
	  }
    }
  }
}