﻿//按路名查询
function searchRoad(){
    var type = document.getElementById("SchoolType").value;
    var location = document.getElementById("schoollocation").value;
    var roadname = document.getElementById("roadNameInput").value;
    if(roadname == ""){
        alert("请输入路段名称");
        document.getElementById("roadNameInput").focus();
    }
    else{
        window.frames["mainLibFrame"].location= "ListRoadPage.aspx?type=" + type + "&location=" + location + "&roadname=" + roadname;
    }
}
//首页点击“检索”按钮
function searchInfo()
{
    var name = document.getElementById("schoolname").value;
    var location = document.getElementById("schoollocation").value;
    var type = document.getElementById("SchoolType").value;
    var mater = document.getElementById("MaterName").value;
    window.open("InfoList.aspx?mater="+mater+"&type="+type+"&location="+location+"&name="+name);
}
//列表点击“检索”按钮
function search()
{
    var name = document.getElementById("schoolname").value;
    var location = document.getElementById("schoollocation").value;
    var type = document.getElementById("SchoolType").value;
    var mater = document.getElementById("MaterName").value;
    window.frames["mainLibFrame"].location= "ListPage.aspx?mater="+mater+"&type="+type+"&location="+location+"&name="+name;
}
function leftsearch(mater)
{
    var name = document.getElementById("schoolname").value;
    var location = document.getElementById("schoollocation").value;
    var type = document.getElementById("SchoolType").value;
    document.getElementById("MaterName").value = mater;
    window.frames["mainLibFrame"].location= "ListPage.aspx?mater="+mater+"&type="+type+"&location="+location+"&name="+name;
}
//点击列表条目查看信息
function viewItem(mater,guid)
{
    window.parent.location = "InfoView.aspx?mater="+mater+"&guid="+guid;
}
//查看学校基本概况
function viewJGGK(info)
{
    window.frames["mainLibFrame"].loaction="PageJGGK.aspx?info="+info+"&school="+document.getElementById("hdSchool").value;
}
