﻿/***首页字符串截取**/
function showti() {
			var tis = document.getElementsByTagName("a");
			for ( var i = 0; i < tis.length; i++) {
				var temp = tis[i];
				if (temp.id == "tle") {
					temp.innerHTML = (temp.innerHTML.length > 28 ? (temp.innerHTML
							.substring(0, 28) + "...") : temp.innerHTML);
				} else if (temp.id == "stle") {
					temp.innerHTML = (temp.innerHTML.length > 18 ? (temp.innerHTML
							.substring(0, 18) + "...") : temp.innerHTML);
				}
			}
		}



function getListByQuery(){
    var findvalue = document.getElementById("findvalue");
    location.href("QueryList.aspx?findvalue=" + findvalue.value);
}


function closeParent(obj){
    //alert(obj.parentNode.parentNode.tagName);
    var parent = obj.parentNode.parentNode;
    parent.style.display = "none";
}
