﻿function CaptureEnter(obj,lang, url)
{      

   if (obj.id == 'search')
    {     
       if (window.event.keyCode == 13) 
        {
        window.event.cancelBubble = false;        
        var s = document.forms[0];
        if ((lang =='FR') && (obj.value.length > 0 )) {
            s.action =  url + "/fr/searchproducts.aspx?searchtext=" + obj.value;
          
            }
         else {
            if (obj.value.length > 0 ){
                s.action =   url + "/eng/searchproducts.aspx?searchtext=" + obj.value;
                }
            }
            
        s.submit();        
        window.event.returnValue = true;    
        
        }
    }
    else 
     {
        if (window.event.keyCode == 13)
        {
        window.event.cancelBubble = true;
        window.event.returnValue = false;
        }
      }
 }

function SearchOnClick(lang, url)
{

    var s = document.forms[0];
 
    var obj = document.getElementById("search");
    
    if ((lang =='FR') && (obj.value.length > 0 )) {
        s.action =   url + "/fr/searchproducts.aspx?searchtext=" + obj.value;
        }
    else {
        if (obj.value.length > 0 ){
            s.action =url + "/eng/searchproducts.aspx?searchtext=" + obj.value;
            }
   }               
    s.submit();        
    window.event.returnValue = true;    

}
