public static function pageHeader()
    {
        global $pfcore;
        $gap = '
			<div style="float:left; width: 50px;">
				&nbsp;
			</div>';
        if ($pfcore->cmsName == 'WordPress') {
            $reg = new PLicense();
            if ($reg->valid) {
                $lic = '<div style="position:absolute; left:300px; top:60px">
					 <a class="button-primary" type="submit" value="" id="submit" name="submit" href="http://shoppingcartproductfeed.com/" target="_blank">Thank You For Supporting The Project</a>
						</div>';
            } else {
                $lic = PLicenseKeyDialog::small_registration_dialog('');
            }
        } else {
            $lic = '';
        }
        $providers = new PProviderList();
        $output = '
			<div class="postbox" style="width:98%;">
				<div class="inside-export-target">
					<div>
						<h4>Select Merchant Type</h4>
						<select id="selectFeedType" onchange="doSelectFeed();">
						<option></option>' . $providers->asOptionList() . '
						</select>
					</div>				
					' . $lic . '
				</div>
			</div>
			<div class="clear"></div>';
        return $output;
    }