function _form_settings_help()
    {
        ?>
			<p>AdSense Manager supports most Ad networks including <?php 
        adsensem_admin::network_list(array('Ad_AdSenseAd', 'Ad_AdSenseReferral', 'Ad_Code'));
        ?>
.</p>
			<p>Any networks not supported directly will be can be managed as HTML Code units. You can re-attempt import of code units at any time using the Import Options.</p>
	<?php 
    }
    function admin_options()
    {
        // Get our options and see if we're handling a form submission.
        global $_adsensem;
        if ($_POST['adsensem-submit']) {
            //$_adsensem['adsense-account']=preg_replace('/\D/','',$_POST['adsensem-adsense-account']);
            $_adsensem['be-nice'] = max(min($_POST['adsensem-be-nice'], 100), 0);
            if (!is_numeric($_adsensem['be-nice'])) {
                $_adsensem['be-nice'] = ADSENSEM_BE_NICE;
            }
            update_option('plugin_adsensem', $_adsensem);
        }
        // Here is our little form segment. Notice that we don't need a
        // complete form. This will be embedded into the existing form.
        ?>

		<div class="wrap">
         <h2>AdSense Manager Options</h2>

		<p>AdSense Manager has been redesigned to be as simple to use as possible. To get you started, the instructions below
				will guide you through the process of adding your first ad to AdSense Manager. Once you've created the first one
				you can simply repeat the process to add as many ads as you like!</p>
				
		<h3>Getting Started</h3>
				
		<ol>
		<li><script type="text/javascript"><!--
google_ad_client = "pub-3287067876809234";
//AdSense Text Link
google_ad_slot = "3788957769";
google_ad_output = "textlink";
google_ad_format = "ref_text";
google_cpa_choice = ""; // on file
//--></script><script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script> Or use <?php 
        adsensem_admin::network_list(array('Ad_AdSense', 'Ad_AdSenseAd', 'Ad_AdSenseReferral', 'Ad_Code'));
        ?>
.</li>
<li>Create a new ad unit using your network's ad online management system.</li>
<li>Copy the ad code generated (Edit &raquo; Copy, from within your browser)</li>
<li>Go to <a href="edit.php?page=adsense-manager-manage-ads">Manage &raquo; Ad Units</a> and paste the code into the box</li>
<li>Click <strong>Import to New Ad Unit&raquo;</strong>
</ol>

<p>If you need more help, there are <a href="http://www.mutube.com/mu/getting-started-with-adsense-manager-3x/" target="_blank">detailed instructions available on our website</a>,
or <a href="http://wordpress.org/tags/adsense-manager" target="_blank">check the forum</a> and <a href="http://wordpress.org/tags/adsense-manager#postform" target="_blank">ask a question</a>.</p>
				
   <form action="" method="post" id="adsensem-manage" enctype="multipart/form-data">
				
		<h3>Be Nice!</h3>
		<p style="text-align:justify;">
				Please support the developers of this plugin by either donating a small amount of your ad space to show our ads, or by making a donation:</p>
				
		<ol>
		<li>I'm Being Nice and donating <input style="text-align:right;" name="adsensem-be-nice" value="<?php 
        echo htmlspecialchars($_adsensem['be-nice'], ENT_QUOTES);
        ?>
"  size="1">% of my Ad space to support development of this plugin [<a href="http://wordpress.org/extend/plugins/adsense-manager/faq/">Eh?</a>]</li>
		<li>I've given a <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=martin%2efitzpatrick%40gmail%2ecom&item_name=Donation%20to%20mutube%2ecom&currency_code=USD&bn=PP%2dDonationsBF&charset=UTF%2d8" target="_blank">a very generous donation through Paypal</a> and got a warm fuzzy feeling.</li>
		<li>I've ordered a random gift <a href="http://www.amazon.co.uk/gp/registry/wishlist/3GXT94HH08RAY?reveal=unpurchased&filter=all&sort=price&layout=standard&x=7&y=10" target="_blank">from your wishlist</a> so you don't need to waste valuable development time in the shops.
		</ol>
				
		<p>Thanks to all those that have shown their support, it really does make a difference!</p>
		
		<p class="submit"><input type="submit" value="Save changes &raquo;"></p>
		</div>
		<input type="hidden" id="adsensem-submit" name="adsensem-submit" value="1" />

		
		
	<input type="hidden" id="adsensem-submit" name="adsensem-submit" value="1" />				 
				 
				 </form>

		<?php 
    }