function doSearchWithin()
		{
			frmSrch = document.getElementById('searchform');
            frmSrch['searchWithin'].value = frmSrch['searchText'].value;
			frmSrch['searchText'].value = '';
			frmSrch['searchText'].focus();
		}
       function add_favorite() {
         url="http://www.uspree.com/";
         title="Uspree - Online Shopping & Price Comparison";
         if (document.all)
           window.external.AddFavorite(url, title);
        else if (window.sidebar)
           window.sidebar.addPanel(title, url, "");
       }


		function addToFavorites()
		{
			if (window.external)
			{
				window.external.AddFavorite('<?=SCRIPT_ROOT?>', '<?=SCRIPT_COMPANY_NAME?>');
			}
			else
			{
				alert("Sorry! Your browser doesn't support this function.");
			}
		}
		
	function CheckSub()
	{
          searchtype = document.searchform.searchProductIn.value;
          if(searchtype == "R"){
           document.searchform.action = "http://www.uspree.com/reviews/";
          } else if(searchtype == "T" || searchtype == "M" || searchtype == "B") {
           document.searchform.action ='http://www.uspree.com/search_products.php';
          }

        }
