﻿// JScript 文件


function onSearch(){
    var txt=document.getElementById("txtSelectValue");
    var url="";
    if(txt.value!=""){
        url="../../search/?sr="+escape(txt.value);
        parent.location.href=url;
    }
}