
/*************************************************************************
*
* Script Name:     google_adsense_settings_master,js
* Script Purpose:  Controls sitewide Adsense settings sent to Google
* Script Created:  3rd August 2005
* Script Modified: [None]
* Script Version:  1.0
*
**************************************************************************/


/*************************************************************************
*
* Script Notes
* ------------
*
*  This is the master controller for the Adsense settings we send to Google
*  such as channel information and publisher ID
*
*  Settings such as keywords to target and the number of ad's to request
*  are controlled by the individual page Javascripts such as the
*  google_adsense_settings_entry.js
*
*  To call this script, add the following to each page/template:
*
*  <script type="text/javascript" language="JavaScript" src="/google_adsense_settings_master.js"></script>
*
*
*
*  IMPORTANT:
*
*  This script should be positioned above any other Adsense Javascripts
*  to ensure that they receive the settings through.
*
*  Also please make sure the channel ID is correct for this site
*  The other settings can generally be left alone
*
*
*
*  Further Notes on integration can be found in the
*  google_adsense_output_controller.js script under script notes
*
*
**************************************************************************/


google_ad_client = "pub-7605429589450512";
google_ad_channel ="6775501545"; // ** Fill in here **
google_ad_output = 'js';
// google_adtest = 'on';
google_safe = 'high';
google_feedback = "on";
google_ad_type  = "text_image";


