﻿// JScript 文件

    function search()
    {
        if($("key").value=="")
        {
            alert("请填写搜索内容");
            return;
        }
        
        if($("stype").value=="p")
            location.href = "http://p.367art.com/searchp.aspx?type=p&key=" + escape($("key").value);
        else
            location.href = "http://p.367art.com/searcha.aspx?type=" + $("stype").value + "&key=" + escape($("key").value);
    }
