﻿document.write("<script type='text/JavaScript' src='/Javascript/Base.js'><\/script>"); 

function searchSubmit(form)
{
    if (form.shopKeyword.value.iTrim() == "请输入特商名称、电话、或相关关键字")
    {
        form.shopKeyword.value = "";
    }
    return true;
}
function searchFocus(el)
{
    if (el.value.iTrim() == "请输入特商名称、电话、或相关关键字")
    {
        el.value = "";
        el.className = el.className.replace("silver", "").replace("  ", " ");
    }
}
function searchBlur(el)
{
    if (el.value.iTrim() == "")
    {
        el.value = "请输入特商名称、电话、或相关关键字";
        el.className += " silver";
    }
}

function setGrade(el, grade)
{
	el.style.background = "url(/images/grade02.gif) no-repeat 0 -" + 25 * grade + "px";
}
