function findproduct(product)
{
if(product !="0")
{
 var url="/products/details/"+product;
 window.location.replace(url);
 return true;
}
else
 return false;
}

function findprocedure(procedure)
{
if(procedure !="0")
{
 var url="/procedures/category/"+procedure;
 window.location.replace(url);
 return true;
}
else
 return false;
}