<?php
  function MainSearchSite()
  {
    return "womenemployed.org";//Leave blank for the entire web.
  }

  function ShowOptions()
  {
    return false;//Set to false to hide the option radio buttons.
  }
  
  function GoogleKey()
  {
    return "D7Rk/gNQFHL/cW3xje1bbLMg69dWw+WY";
  }
  
  function GoogleAPIURL()
  {
    return "http://api.google.com/search/beta2";
  }
  
  function MaxResults()
  {
    return 10;//Cannot be greater than 10.
  }

  function PageSpread()
  {
    return 9;//Should not be excessive.
  }

  function SmartyClass()
  {
    return "./smarty/Smarty.class.php";
  }
  
  function SmartyCompileDir()
  {
    return "compile";
  }
  
  function SmartyIsSubDir()
  {
    //This is set to true if SmartyCompileDir is supposed to be a subdirectory off of the current
    //working directory.
    return true;
  }
  
  function DirDelimiter()
  {
    //return "/";//This should be "/" for Unix or Linux, and should be "\\" for Windows.
    return "/";
  }
  
  function FullSmartyCompileDir()
  {   
    if (SmartyIsSubDir())
    {
      $Result = getcwd().DirDelimiter().SmartyCompileDir();
    }
    else//SmartyCompileDir contains an absolute path.
    {
      $Result = SmartyCompileDir();
    }
    return $Result;
  }

  function ShowPageRank()
  {
    return true;//Set to false to not do a PageRank lookup for each site.
  }
?>