﻿// JScript 文件

function page_load()
{
   //toSearchShow(2);
   document.getElementById("LinkID").value=window.location.href;
}
function toSearchShow(Type)
{
   if(Type==1)
   {
       s1.className= "hover";
       s2.className="";
       SelType.style.display="";
       document.getElementById("txtType").value=1;
       SearchFrm.action="SearchPartNo.html";
       
   }
   else
   {
       s1.className= "";
       s2.className="hover";
       SelType.style.display="none";
       document.getElementById("txtType").value=2;
       SearchFrm.action="SearchDescript.html";
   }
}
function GoPartNo(No)
{
     var urls ="http://www.chinaicmart.com/seller/part_sell_message.asp?keyword=" + No + "";
     window.open(urls);
}
function toDownLoad(ID)
{
   window.open("Http://www.SeekDataSheet.Com/" + ID + "/PdfDownLoad.html");
}
function chkFrm()
{
    var Key = document.getElementById("KeyWord").value;
    if(Key.length<3) 
    {alert("At least 3 letters for searching"); return false;}
    else return true;
}
