
<!-- the ff scripts are brought about by the intro of the product search key 

	function validateform ()
	{
	    s=document.form.q.value;
 
            var l=0; var r=s.length - 1;
	    while(l < s.length && s[l] == ' ')
	    {	l++; }
	    while(r > l && s[r] == ' ')
	    {	r-=1;	}
	    qinput = s.substring(l, r+1);
  	    if ((qinput != null) && (qinput != "")) {
            	return true;
	    }
	    else {
                
		return false;
	    }
            
        }

        function sf()
	{ 
//	    dynAnimation();
	    document.form.q.focus();
	}

//--> 
