//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/**
 * @package Starweb Webshop System
 * @version See version-file
 * @copyright Copyright (c) 2000 - 2008, Ehandelslogik i Lund AB
 * 
 * @author Ehandelslogik i Lund AB, org.no 556696-9019  (Starweb)
 *  Country: Sweden
 *  Homepage: www.starweb.se
 *  E-mail: support@starweb.se
 * 
 * License:
 * This program is not "free" software and restrictions apply!
 * This file as well as all other files containing the code to our software may ONLY be used and/or redistributed with written permission from us.
 * You'll find information regarding our conditions and pricing on our homepage. Contact us immediately if any of these conditions are not clear.
 */
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/**
 * @name Function: Execute Article Search
 * @access public
 */
function ExecArtSearch()
{
   // Get: Article search texbox
   var oArtSearch = document.getElementById("sArtSearch");
   
   
   // Get: Url location in Main-frame to search for entered string value
   if(TrimStr(oArtSearch.value) != '')
   {
      // Get: Settings
      var sLocation    = (IsFrameset() == true) ? parent.Main : document;
      var sUrlRedirect = sUrlShop + 'Page/Art/pgArtList.php?sSearch=' + escape(oArtSearch.value);
      
      
      // Redirect: To correct frame
      sLocation.location.href = sUrlRedirect;
   }  
   
   
   // Set: Focus on texbox again
   oArtSearch.focus();
   
   
   return false;
}
