﻿// JScript File


function prod()
{

   var search_matter; 
   var mtype=document.frmsearch.drpsele.options[document.frmsearch.drpsele.selectedIndex].value;
    search_matter=document.frmsearch.txtsearch.value;
if(search_matter=="")
{
    alert("Please enter search creteria");
}
else{
    if(mtype==1)
    {
        location.href="product_links.aspx?search=" + search_matter;
    }
  //  else if(mtype==2)
  //  {
  //      location.href="sell_links.aspx?search=" + search_matter;
  //  }
    else if(mtype==3)
    {
        location.href="buyer_links.aspx?search=" + search_matter;
    }
    }
}