| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/usa_sites/usagrantapplications.org/ |
Upload File : |
<?php
header("Location: /v9/");
exit(0);
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/php_header.php');
?>
<?php
$str = '';
foreach($_GET as $k=>$v) {
$str .= ($str=='') ? '?'.urlencode($k).'='.urlencode($v) : '&'.urlencode($k).'='.urlencode($v);
}
$rand = rand(1,2);
if($rand==1) {
//header("Location: /{$str}");
//exit();
} elseif($rand==2) {
header("Location: /small-business/{$str}");
exit();
}
?>
<?php require_once($_SERVER['DOCUMENT_ROOT']."/inc/globals.php");?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1" />
<title><?=($title) ? $_SITE_NAME.' : '.$title : $_SITE_NAME;?></title>
<link type="text/css" rel="stylesheet" href="/housing/v1/style2.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="//ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script>
<script src="/v5/js/browser.js"></script>
<script src="/v5/js/jquery.formatter.min.js"></script>
<script src="/v5/js/pixastic.custom.js"></script>
</head>
<body id="body" class="<?=$body_class;?>" onunload="">
<div class="logo" onclick="window.location='/'"></div>
<div class="content">
<div class="content_">
<script type="text/javascript">
var track_pieces = {};
var unique_subcats = {1: 6, 6: 1, 55:26, 26:55};
function ucwords (str) {
return (str + '').replace(/^([a-z])|\s+([a-z])/g, function ($1) {
return $1.toUpperCase();
});
}
function valid_email(email) {
if(/(.+)@(.+){2,}\.(.+){2,}/.test(email)) {
return true;
} else {
return false;
}
}
function validate_step(step) {
var step = 'form';
var error = 'Please fix the problems below:'+"\n\n";
var success = true;
if($('#'+step).parents('.section').find('[name=app_amount_needed]').val() == 'Select...') {
success = false;
error += "You need to select how much money you want.\n";
}
if($('#'+step).find('[name=app_gender]').val() == '') {
success = false;
error += "You need to select your gender.\n";
}
if($('#'+step).find('[name=app_citizenship]').val() == '') {
success = false;
error += "You need to select your citizenship.\n";
}
if($('#'+step).find('[name=app_age]').val() == '') {
success = false;
error += "You need to type in your age.\n";
}
if($('#'+step).find('[name=cc_zip]').val() == '') {
success = false;
error += "You need to type in your zip code.\n";
}
if($('#'+step).find('[name=cc_state]').val() == '') {
success = false;
error += "You need to type in your state.\n";
}
if($('#'+step).find('[name=app_usedescription]').val() == '') {
success = false;
error += "You need to describe how you will use the funding.\n";
}
if($('#'+step).find('[name=cc_fname]').val() == '') {
success = false;
error += "You need to type in your first name.\n";
}
if($('#'+step).find('[name=cc_lname]').val() == '') {
success = false;
error += "You need to type in your last name.\n";
}
if($('#'+step).find('[name=cc_email]').val() == '') {
success = false;
error += "You need to type in your email address.\n";
}
else if(!valid_email($('#'+step).find('[name=cc_email]').val())) {
success = false;
error += "You need to type in a valid email address.\n";
}
if($('#'+step).find('[name=phone_full]').val().replace(/[^0-9]/g,'').length!=10) {
success = false;
error += "You need to type in your phone number.\n";
}
if(success) {
return true;
} else {
return error;
}
}
function reset_selections() {
$('#'+track_pieces['section_id']).click();
}
function checkZip(zip,me) {
zip = zip.replace(/[^0-9]/g,'');
if(zip.length==5) {
var str = 'zip='+encodeURIComponent(zip);
$.ajax
({
cache: false,
type: "POST",
dataType:"json",
data: str,
url: "/php/ZipToCity.php",
success: function(data)
{
if(!data.error) {
$(me).parents('.sub_section').find('[name=cc_city]').val(data.city);
$(me).parents('.sub_section').find('[name=cc_state]').val(data.state);
}
},error: function(jqXHR, textStatus, errorThrown) {
}
});
}
}
function TabNext(me,num,next) {
if(me.value.length==num) {
$(next).focus();
}
}
function check_validation(step) {
var validation = validate_step(step);
if(validation===true) {
return true;
} else {
alert(validation);
return false;
}
}
$( document ).ready(function() {
$('.funding_types img').each(function() {
$(this).before('<p>'+$(this).data('type')+'</p>');
});
$(".funding_types a").hover(function(){
$(this).find("img").stop().animate({"opacity": .15}, 300);
$(this).find("p").stop().animate({"opacity": 1}, 300);
},function(){
$(this).find("img").stop().animate({"opacity": 1}, 300);
$(this).find("p").stop().animate({"opacity": 0}, 300);
});
$(".main_section").click(function(){
var section = $(this).data("section");
$(".main_section").removeClass("selected").addClass("deselected");
$(".section").hide();
$(".sub_section").hide();
$('#'+section).find('.sub_section').show();
$(this).removeClass("deselected").addClass("selected");
$('#'+section).fadeIn(300);
$('.btnLnk').removeClass('selected');
track_pieces = {};
track_pieces['section'] = section;
track_pieces['section_id'] = $(this).attr('id');
});
$(".funding_sections a").click(function(){
var sectionType = $(this).data("type");
var sectionId = $(this).attr('id');
$(".section").hide();
$("#"+sectionId+"Lnk").click();
$('.btnLnk').removeClass('selected');
track_pieces = {};
track_pieces['section'] = sectionType;
track_pieces['section_id'] = sectionId;
});
$(".hidden_sections a").click(function(){
var sectionType = $(this).data("type");
var sectionId = $(this).attr('id');
$(".section").hide();
$("#"+sectionId+"Lnk").click();
$('.btnLnk').removeClass('selected');
track_pieces = {};
track_pieces['section'] = sectionType;
track_pieces['section_id'] = sectionId;
});
$(".btnLnk").click(function(){
if($(this).hasClass("selected") ) {
$(this).removeClass("selected");
delete track_pieces['subsection'][$(this).attr('subcat_id')];
delete track_pieces['subsection_title'][$(this).attr('subcat_id')];
} else {
$(this).addClass("selected");
if(typeof(track_pieces['subsection'])=='undefined') { track_pieces['subsection'] = {}; }
if(typeof(track_pieces['subsection_title'])=='undefined') { track_pieces['subsection_title'] = {}; }
track_pieces['subsection'][$(this).attr('subcat_id')] = 1;
track_pieces['subsection_title'][$(this).attr('subcat_id')] = $(this).attr('subcat_title');
//check for unique subcats
if(typeof(track_pieces['subsection'][unique_subcats[$(this).attr('subcat_id')]])!='undefined') {
delete track_pieces['subsection'][unique_subcats[$(this).attr('subcat_id')]];
delete track_pieces['subsection_title'][unique_subcats[$(this).attr('subcat_id')]];
$('#subcategory_'+unique_subcats[$(this).attr('subcat_id')]).removeClass('selected');
}
}
});
$(".sub_section input[type=checkbox]").click(function(){
if($(this).is(":checked") ) {
if(typeof(track_pieces['checkboxes'])=='undefined') { track_pieces['checkboxes'] = {}; }
track_pieces['checkboxes'][$(this).attr('name')] = 1;
} else {
delete track_pieces['checkboxes'][$(this).attr('name')];
}
});
$('input[name=phone_full]').formatter({
'pattern': '({{999}}) {{999}}-{{9999}}',
'persistent': false
});
//$('.sub_section').hide();
$('#busLnk').click();
});
</script>
<?php require_once($_SERVER['DOCUMENT_ROOT'].'/v5/sidebar-minor3.php');?>
<div class="main">
<div class="main_">
<h1 style="font-size:24px;">Grant Applications are Available Now</br>
for <em>Small Business Owners</em></h1>
<p> <img style="float:right; padding: 10px;" src="/v5/images/business-woman.jpg">As a small business owner, it is certain that you have found some conflicting sites in your
research into the world of government assistance. Some government sites say that the government does NOT provide grants for starting and expanding a business. Then, on other government sites it states they support a number of grant loan and financing programs. So which is it? If the first is true, how is it possible that the government seems to be lining the pockets of some corporations while others struggle to even get started or stay afloat? They readily admit that these programs are targeting this section of entrepreneurs because it is where innovators flourish. There must be some unknown criterion that must be met in order to gain access to this money. That is where we come into play. The selection process for funding is so specific that doing the research on your own is exhausting. In fact, in 2011 President Obama issued a memorandum to the heads of executive departments requesting that the government "make it easier for businesses to access the full range of Government programs and services without having to waste effort navigating their way through the Federal bureaucracy."</p>
<center><a href="#form"><img style="padding:10px;" src="/images/apply_today.jpg" /></a></center>
<h2 style="margin-top:20px;">Why you should consider a grant</h2>
<p>Unlike some government programs like SBA loans, grants do not require any types of credit checks, collateral, security deposits or cosigners. It doesn’t even matter if you are going through a period of bad credit or you have previously declared bankruptcy. As a woman who is a legal U.S. resident and citizen you are welcome and eligible to apply for this money that you never have to repay! We are here and eager to help you through it. Most people, in the beginning, think this process might sound simple, unfortunately it is not, the complications of finding the right type of grant and then going through the paperwork process is frustrating for many women and in the end many talented women, just like you, without the right help simply give up.</p>
<p>
That is where we can help! We have direct access to many grants offered by private organizations that people don’t even know are available. Private organizations are one of the largest distributors of grants in the world. Many of you many have never heard of these companies or organizations. One example is NASE, the National Association for the Self Employed this organization has already given out over $650,000 in grants, ranging from $5,000-$20,000. This same organization can not only help you start a business but it can help you grow a business or even go back to school. This is only one of thousands of private funding grants that are available to you.
</p>
<h2 style="margin-top:20px;">Apply for as many as you want</h2>
<p>With all the grants out there, you are able to apply for as many grants as you want, from as many organizations as you can find, that fit your specific needs. There are NO limits. Don’t forget, these grants, once received are FREE money to you and your new business and never need to be repaid. In June of 2014 over 1.5 million dollars was earmarked for Women’s Business Ownership Assistance. 12 states are eligible for these grants and women owned businesses who qualify can receive funding for up to 5 years. We are well aware of all the intricacies that you need to consider as you apply to receive your small business grant. We know all the variables that can help you to increase your chances of success and get you all the grant money you need. We know the type of industry, the specific focuses, the certain areas, which the funding organizations believe to be beneficial to help the economy and job growth. We know the business sectors and the geographical locations that have the greatest influence on the obtainability of small business grants for women and their success.
</p>
<p>
Now there is really no need to keep stressing yourself out about how you are going to figure this all out, just apply and let us help you to get your business started. As you have seen gaining this specific kind of knowledge, like where and how to get access to these government funds, can be complicated and very time consuming. Knowing that, how long do you really want to wait to get the help you need? You do not need to look any further; we’re ready to help you. We have already done the research for you and have all the knowledge, information and experience that you will need to get you pointed in the right direction, saving you a lot of time and headaches and heartaches. So start your application today!
</p>
<br/>
<div id="form2">
<a id="busLnk" data-section="business" class="main_section busLnk selected" style="display:none;"></a>
<div style="block: display;border:none;" id="business" class="section">
<form method="post" action="/order.php" id="form" onsubmit="return check_validation('form');">
<div style="block: display;" id="busStep1" class="sub_section">
<div class="clear_left"></div>
<div class="clear_left"></div>
<h2>USA Grant Funding Registration:</h2>
<table cellpadding="1" cellspacing="0" class="questions">
<tr>
<td>How much money are you going to need?
<select name="app_amount_needed">
<option selected>Select...</option>
<option value="$500-$10,000" <?= ($_REQUEST['app_amount_needed']=='$500-$10,000') ? 'selected' : '';?>>$500 - $10,000</option>
<option value="$10,000 - $25,000" <?= ($_REQUEST['app_amount_needed']=='$10,000 - $25,000') ? 'selected' : '';?>>$10,000 - $25,000</option>
<option value="$25,000 - $50,000" <?= ($_REQUEST['app_amount_needed']=='$25,000 - $50,000') ? 'selected' : '';?>>$25,000 - $50,000</option>
<option value="$50,000 - $100,000" <?= ($_REQUEST['app_amount_needed']=='$50,000 - $100,000') ? 'selected' : '';?>>$50,000 - $100,000</option>
<?
if ($granttype != 'business')
{
echo "<option value=\"$100,000 or More\" ".(($_REQUEST['app_amount_needed']=='$100,000 or More') ? 'selected' : '').">\$100,000 or More</option>";
}
else
{
?>
<option value="$100,000 - $250,000" <?= ($_REQUEST['app_amount_needed']=='$100,000 - $250,000') ? 'selected' : '';?>>$100,000 - $250,000</option>
<option value="$250,000 - $500,000" <?= ($_REQUEST['app_amount_needed']=='$250,000 - $500,000') ? 'selected' : '';?>>$250,000 - $500,000</option>
<option value="$500,000 - $1,000,000" <?= ($_REQUEST['app_amount_needed']=='$500,000 - $1,000,000') ? 'selected' : '';?>>$500,000 - $1,000,000</option>
<option value="$1,000,000 +" <?= ($_REQUEST['app_amount_needed']=='$1,000,000 +') ? 'selected' : '';?>>$1,000,000 +</option>
<?
}
?>
</select>
</td>
</tr>
</table>
</div>
<div id="busStep2" class="sub_section">
<div class="clear_left"></div>
<h4 class="stpTitle">What are the major financial needs for your business?</span></h4>
<ul>
<li>
<input type="checkbox" id="bus_operating_capital_yes" name="operating_capital" value="1" />
<label for="bus_operating_capital_yes">Operating Capital</label>
</li>
<li>
<input type="checkbox" id="bus_wages_yes" name="wages" value="1" />
<label for="bus_wages_yes">Wages</label>
</li>
<li>
<input type="checkbox" id="bus_marketing_yes" name="marketing" value="1" />
<label for="bus_marketing_yes">Marketing/Advertising</label>
</li>
<li>
<input type="checkbox" id="bus_training_yes" name="training" value="1" />
<label for="bus_training_yes">Training</label>
</li>
<li>
<input type="checkbox" id="bus_building_yes" name="building" value="1" />
<label for="bus_building_yes">Building/Lease</label>
</li>
<li>
<input type="checkbox" id="bus_construction_yes" name="construction" value="1" />
<label for="bus_construction_yes">Construction/Renovation</label>
</li>
</ul>
<ul>
<li>
<input type="checkbox" id="bus_equipment_yes" name="equipment" value="1" />
<label for="bus_equipment_yes">Equipment/Supplies</label>
</li>
<li>
<input type="checkbox" id="bus_technology_yes" name="technology" value="1" />
<label for="bus_technology_yes">Technology (Computers, operating systems, phone systems, etc.)</label>
</li>
<li>
<input type="checkbox" id="bus_licensing_yes" name="licensing" value="1" />
<label for="bus_licensing_yes">Licensing/Permits</label>
</li>
<li>
<input type="checkbox" id="bus_inventory_yes" name="inventory" value="1" />
<label for="bus_inventory_yes">Inventory</label>
</li>
<li>
<input type="checkbox" id="bus_other_yes" name="other" value="1" />
<label for="bus_other_yes">Other</label>
</li>
</ul>
<div class="clear_left"></div>
<table cellpadding="2" cellspacing="0" class="questions">
<tr>
<td colspan="2">
Describe what you will use the money for:
<textarea name="app_usedescription" cols="64" rows="6"><?= $_REQUEST['app_usedescription'];?></textarea>
</td>
</tr>
</table>
<table cellpadding="2" cellspacing="0" class="questions">
<tr>
<label style="display:inline-block; margin-top:15px;">Gender<br />
<select name="app_gender">
<option selected>Select...</option>
<option value="M" <?= ($_REQUEST['app_gender']=='M') ? 'selected' : '';?>>Male</option>
<option value="F" <?= ($_REQUEST['app_gender']=='F') ? 'selected' : '';?>>Female</option>
</select>
</label>
<label style="display:inline-block;">Age<br />
<select name="app_age">
<option selected>Select...</option>
<option value="18-25" <?= ($_REQUEST['app_age']=='18-25') ? 'selected' : '';?>>18-25</option>
<option value="26-34" <?= ($_REQUEST['app_age']=='26-34') ? 'selected' : '';?>>26-34</option>
<option value="35-49" <?= ($_REQUEST['app_age']=='35-49') ? 'selected' : '';?>>35-49</option>
<option value="50-65" <?= ($_REQUEST['app_age']=='50-65') ? 'selected' : '';?>>50-65</option>
<option value="66-80" <?= ($_REQUEST['app_age']=='66-80') ? 'selected' : '';?>>66-80</option>
<option value="80+" <?= ($_REQUEST['app_age']=='80+') ? 'selected' : '';?>>80 +</option>
</select>
</label>
<label style="display:inline-block;">Citizenship<br />
<select name="app_citizenship">
<option value="" <?= (isset($_REQUEST['app_citizenship']) && $_REQUEST['app_citizenship']=='') ? 'selected="selected"' : null;?>>Select</option>
<option value="citizen" <?= (isset($_REQUEST['app_citizenship']) && $_REQUEST['app_citizenship']=='citizen') ? 'selected="selected"' : null;?>>U.S. Citizen</option>
<option value="resident" <?= (isset($_REQUEST['app_citizenship']) && $_REQUEST['app_citizenship']=='resident') ? 'selected="selected"' : null;?>>Resident Alien</option>
<option value="greencard" <?= (isset($_REQUEST['app_citizenship']) && $_REQUEST['app_citizenship']=='greencard') ? 'selected="selected"' : null;?>>Green Card Holder</option>
<option value="permanent" <?= (isset($_REQUEST['app_citizenship']) && $_REQUEST['app_citizenship']=='permanent') ? 'selected="selected"' : null;?>>Permanent Resident</option>
<option value="unsure" <?= (isset($_REQUEST['app_citizenship']) && $_REQUEST['app_citizenship']=='unsure') ? 'selected="selected"' : null;?>>Not Sure</option>
</select>
</label>
</tr>
<tr>
<td colspan="2">
<p style="margin-top:25px;">What unique things would separate you from other applicants applying for this money?<p>
<textarea name="app_uniqueness" cols="64" rows="6"><?= $_REQUEST['app_uniqueness'];?></textarea>
</td>
</tr>
</table>
<label style="display:inline-block;margin:5px 0px;">First Name<br />
<input type="text" name="cc_fname" value="<?= $_REQUEST['cc_fname'];?>">
</label>
<label style="display:inline-block;margin:5px 0px;">Last Name<br />
<input type="text" name="cc_lname" value="<?= $_REQUEST['cc_lname'];?>">
</label>
<br />
<label style="display:inline-block;margin:5px 0px;">Street Address<br />
<input type="text" name="cc_addr" value="<?= $_REQUEST['cc_addr'];?>">
</label>
<label style="display:inline-block;margin:5px 0px;">Zip<br />
<input type="tel" name="cc_zip" maxlength="5" id="id-cc-zip" onkeyup="checkZip($(this).val(),this);" value="<?= $_REQUEST['cc_zip'];?>">
</label>
<br />
<label style="display:inline-block;margin:5px 0px;">City<br />
<input type="text" name="cc_city" value="<?= $_REQUEST['cc_city'];?>">
</label>
<label style="display:inline-block;margin:5px 0px;">State<br />
<select name="cc_state">
<option value="" selected>Select...</option>
<option value="AK" <?= ($_REQUEST['cc_state']=='AK') ? 'selected' : '';?>>Alaska</option>
<option value="AL" <?= ($_REQUEST['cc_state']=='AL') ? 'selected' : '';?>>Alabama</option>
<option value="AR" <?= ($_REQUEST['cc_state']=='AR') ? 'selected' : '';?>>Arkansas</option>
<option value="AZ" <?= ($_REQUEST['cc_state']=='AZ') ? 'selected' : '';?>>Arizona</option>
<option value="CA" <?= ($_REQUEST['cc_state']=='CA') ? 'selected' : '';?>>California</option>
<option value="CO" <?= ($_REQUEST['cc_state']=='CO') ? 'selected' : '';?>>Colorado</option>
<option value="CT" <?= ($_REQUEST['cc_state']=='CT') ? 'selected' : '';?>>Connecticut</option>
<option value="DC" <?= ($_REQUEST['cc_state']=='DC') ? 'selected' : '';?>>District of Columbia</option>
<option value="DE" <?= ($_REQUEST['cc_state']=='DE') ? 'selected' : '';?>>Delaware</option>
<option value="FL" <?= ($_REQUEST['cc_state']=='FL') ? 'selected' : '';?>>Florida</option>
<option value="GA" <?= ($_REQUEST['cc_state']=='GA') ? 'selected' : '';?>>Georgia</option>
<option value="HI" <?= ($_REQUEST['cc_state']=='HI') ? 'selected' : '';?>>Hawaii</option>
<option value="IA" <?= ($_REQUEST['cc_state']=='IA') ? 'selected' : '';?>>Iowa</option>
<option value="ID" <?= ($_REQUEST['cc_state']=='ID') ? 'selected' : '';?>>Idaho</option>
<option value="IL" <?= ($_REQUEST['cc_state']=='IL') ? 'selected' : '';?>>Illinois</option>
<option value="IN" <?= ($_REQUEST['cc_state']=='IN') ? 'selected' : '';?>>Indiana</option>
<option value="KS" <?= ($_REQUEST['cc_state']=='KS') ? 'selected' : '';?>>Kansas</option>
<option value="KY" <?= ($_REQUEST['cc_state']=='KY') ? 'selected' : '';?>>Kentucky</option>
<option value="LA" <?= ($_REQUEST['cc_state']=='LA') ? 'selected' : '';?>>Louisiana</option>
<option value="MA" <?= ($_REQUEST['cc_state']=='MA') ? 'selected' : '';?>>Massachusetts</option>
<option value="MD" <?= ($_REQUEST['cc_state']=='MD') ? 'selected' : '';?>>Maryland</option>
<option value="ME" <?= ($_REQUEST['cc_state']=='ME') ? 'selected' : '';?>>Maine</option>
<option value="MI" <?= ($_REQUEST['cc_state']=='MI') ? 'selected' : '';?>>Michigan</option>
<option value="MN" <?= ($_REQUEST['cc_state']=='MN') ? 'selected' : '';?>>Minnesota</option>
<option value="MO" <?= ($_REQUEST['cc_state']=='MO') ? 'selected' : '';?>>Missouri</option>
<option value="MS" <?= ($_REQUEST['cc_state']=='MS') ? 'selected' : '';?>>Mississippi</option>
<option value="MT" <?= ($_REQUEST['cc_state']=='MT') ? 'selected' : '';?>>Montana</option>
<option value="NC" <?= ($_REQUEST['cc_state']=='NC') ? 'selected' : '';?>>North Carolina</option>
<option value="ND" <?= ($_REQUEST['cc_state']=='ND') ? 'selected' : '';?>>North Dakota</option>
<option value="NE" <?= ($_REQUEST['cc_state']=='NE') ? 'selected' : '';?>>Nebraska</option>
<option value="NH" <?= ($_REQUEST['cc_state']=='NH') ? 'selected' : '';?>>New Hampshire</option>
<option value="NJ" <?= ($_REQUEST['cc_state']=='NJ') ? 'selected' : '';?>>New Jersey</option>
<option value="NM" <?= ($_REQUEST['cc_state']=='NM') ? 'selected' : '';?>>New Mexico</option>
<option value="NV" <?= ($_REQUEST['cc_state']=='NV') ? 'selected' : '';?>>Nevada</option>
<option value="NY" <?= ($_REQUEST['cc_state']=='NY') ? 'selected' : '';?>>New York</option>
<option value="OH" <?= ($_REQUEST['cc_state']=='OH') ? 'selected' : '';?>>Ohio</option>
<option value="OK" <?= ($_REQUEST['cc_state']=='OK') ? 'selected' : '';?>>Oklahoma</option>
<option value="OR" <?= ($_REQUEST['cc_state']=='OR') ? 'selected' : '';?>>Oregon</option>
<option value="PA" <?= ($_REQUEST['cc_state']=='PA') ? 'selected' : '';?>>Pennsylvania</option>
<option value="PR" <?= ($_REQUEST['cc_state']=='PR') ? 'selected' : '';?>>Puerto Rico</option>
<option value="RI" <?= ($_REQUEST['cc_state']=='RI') ? 'selected' : '';?>>Rhode Island</option>
<option value="SC" <?= ($_REQUEST['cc_state']=='SC') ? 'selected' : '';?>>South Carolina</option>
<option value="SD" <?= ($_REQUEST['cc_state']=='SD') ? 'selected' : '';?>>South Dakota</option>
<option value="TN" <?= ($_REQUEST['cc_state']=='TN') ? 'selected' : '';?>>Tennessee</option>
<option value="TX" <?= ($_REQUEST['cc_state']=='TX') ? 'selected' : '';?>>Texas</option>
<option value="UT" <?= ($_REQUEST['cc_state']=='UT') ? 'selected' : '';?>>Utah</option>
<option value="VA" <?= ($_REQUEST['cc_state']=='VA') ? 'selected' : '';?>>Virginia</option>
<option value="VT" <?= ($_REQUEST['cc_state']=='VT') ? 'selected' : '';?>>Vermont</option>
<option value="WA" <?= ($_REQUEST['cc_state']=='WA') ? 'selected' : '';?>>Washington</option>
<option value="WI" <?= ($_REQUEST['cc_state']=='WI') ? 'selected' : '';?>>Wisconsin</option>
<option value="WV" <?= ($_REQUEST['cc_state']=='WV') ? 'selected' : '';?>>West Virginia</option>
<option value="WY" <?= ($_REQUEST['cc_state']=='WY') ? 'selected' : '';?>>Wyoming</option>
</select>
</label>
<label style="display:inline-block;margin:5px 0px;">Day Phone<br />
<input type="tel" name="phone_full" value="<?= $_REQUEST['phone_full'];?>" />
</label>
<br />
<table cellpadding="2" cellspacing="0" class="questions">
<tr>
<td class="q" style="width:auto; margin-top:15px;">What Email address would you like to use for your Username for your Online Funding Application Account?</td>
</tr>
<tr>
<td class="a" style="width:auto;float:none;"><input type="text" name="cc_email" size="30" placeholder="(ie. yourmail@hotmail.com)" value="<?= $_REQUEST['cc_email'];?>"></td>
</tr>
<tr>
<td class="s"><small><i>** Your email is safe. We hate spam as much as you do!!</i></small></td>
</tr>
<tr>
<td class="s"><small><i>** Your <u>Email</u> will be <u>your username</u> for the USA Grant Applications website. Please double check it to be sure it is accurate!</i></small></td>
</tr>
<tr>
<td>
<input type='checkbox' name="inform_me" value="1" checked /> Yes, I want to receive emails on New Funding Opportunities as well as New Tips!
</td>
</tr>
</table>
<br/>
<center><input type="submit" class="submit" value="Submit >" /></center>
<input type="hidden" name="tc" value="<?= $tc; ?>">
<input type="hidden" name="form_filled_out" value="<?= $_SERVER['REQUEST_URI'];?>" />
<?= $trackerformparams; ?>
</div>
<input type="hidden" name="form_version" value="v5" />
<input type="hidden" name="category_id" value="1" />
</form>
</div>
</div>
<p>Funding is available in many different forms: grants, loans, private venture capital organizations who fund programs, and non-profits who can assist many business owners with various resources. The problem in gaining access lies in the fact that their scope of assistance is very narrow, and you need to know how to fit in the tiny lens they are looking through. Their websites specifically state that this funding is only available to a very specialized and distinct audience, yet almost every government agency has grants available including:</p>
<p>Department of Agriculture, Department of Commerce, Department of Defense, Department of Education, Department of Energy, Department of Health and Human Services, Department of Homeland Security, Department of Transportation, EPA, NASA , National Institute of Standards and Technology , National Oceanic and Atmospheric Administration and the National Science Foundation.</p>
<p>Admittedly, they disclose that this is "a competitive awards-based program". This inbred system, known by few, is what led the President's newly directed programs to concede that "too often, interactions with the government are burdensome and frustrating. From seeking out financing opportunities to learning about the latest regulations affecting them, hard-working businesses are
spending too much time navigating the federal bureaucracy."</p>
<p>USA Grant Applications specializes in "navigating the bureaucracy". We have spent years leading business owners through the narrow tunnels of these government-funded small business programs. And we can help you too!</p>
<p>To show you what we are talking about let's take one small aspect of small business funding, Research & Development. Did you know that almost every government agency or division must designate 2.8% of their R & D budget to programs aimed to assist small, "for-profit" businesses in commercializing profitable inventions and ideas? This money, averaging over 700 million a year, was set aside to make sure that small businesses can have a chance to compete on the same level with large businesses. Additional funding options are expanded to even greater levels as Federal and State Grant programs work together in the science and technology field each year to provide another $2 million dollars in funding. Then add to that Venture Capital companies and non-profit endeavors and you have more programs than you have time to apply for. How will your business be able to capitalize on those types of funds? With our help you can find the programs that fit your needs and position you to take advantage of government programs that are to be used to help strengthen America's businesses competitiveness worldwide.</p>
<center><a href="#form"><img style="padding:10px;" src="/images/apply_today.jpg" /></a></center>
<p>Don't worry about your present financial situation. Funding applications do not require collateral, credit checks, security deposits or co-signers. You can apply even if you have a Bankruptcy. Also remember that government funding is not available for personal expenses or paying off debt but there may be other assistance programs out there to help you out of your situation!</p>
<p>Get your piece of the big funding pie. Start the Application Process <strong>Now! Don't wait.</strong> The money you need may be given to your neighbor, if they qualify!</p>
<h2>About Our Services:</h2>
<p>To provide you with the online knowledge of how to apply for this funding, combined with the support you need to successfully pursue your funding goals, we charge a small up-front fee. This fee is used to pay our funding writer to provide you with the most up-to-date information from the funding world. The fee is only $29.95, which is an extremely fair price to pay for the wealth of online resources, knowledge and application sources we will provide. With your small registration fee, you will receive instant access to our members-only application sources site.</p>
<p>Our membership fee also comes with a GUARANTEE which states: If you apply for funding using one of the applications you find on our website and you don't receive funding, your membership fees will be refunded to you immediately. All you have to do is provide us with the name of the funding opportunity you applied for and a copy of the rejection letter you received from the funder.</p>
<p>Don't read any further if you are not sincerely interested in securing Funding Money. We don't want to take your money if this is something you really don't want to do. There is a lot of time and money put into searching out these applications, and we want you to be sure you are as serious about getting your share of this money as we are about giving you this information. Remember, you must qualify for the different funding programs listed on this site in order for you to receive funding and because we are not a funder, we can not guarantee that you will qualify or receive funding!</p>
<p> The sad news is most people never apply for any kind of funding because they just don't know "how" or "who" to apply to, not to mention the fact that they think it is too hard. It may be easier than you may think, but you will never know until you try, so what are you waiting for? <strong>Sign up today.</strong></p>
<center><a href="#form"><img src="/images/apply_today.jpg" /></a></center>
<p style="font-size:8px">* To protect the identity of our clients some of the pictures may not actually represent the testimonial.</p>
</div>
</div>
<img src="https://www.surfcrm.com/lcapi/FormImpressionTracking.php?site=usaga&ip_address=<?= $_SERVER['REMOTE_ADDR'];?>&form_url=<?= urlencode($_SERVER['REQUEST_URI']);?>" />
<script type="text/javascript">
window.setTimeout(function() {
var form_session = new Image();
form_session.src = "https://www.surfcrm.com/lcapi/FormSessionTracking.php?site=usaga&ip_address=<?= $_SERVER['REMOTE_ADDR'];?>&form_url=<?= urlencode($_SERVER['REQUEST_URI']);?>";
},10000);
</script>
</div>
</div>
<?php
$current_page = '';
$stack = get_included_files();
foreach($stack as $s) {
if(!in_array(basename($s),array('common.php','AuthLCAPI.php','order.php','header.php','header_20.php','functions.includes2.php','terms_textarea.php','ads.php','footer_20.php','sidebar.php','header2.php','footer2.php','php_header.php','globals.php','functions.includes.php','LCAPI.php','TrackerLib.php','Yahoo.php','MIVA.php','Unknown.php','footer.php'))) {
$current_page = str_replace($_SERVER['DOCUMENT_ROOT'],'',$s);
}
}
?>
<div class="base">
<div class="base_">
<?php if($current_page!='/order_research_service_before_v5.php') { ?>
<a href="login.php" class="loginBtn"><img src="/images/login.jpg" style="width:100px;" /></a>
<?php } ?>
<a href="/v5/">Home</a> | <a href="/v5/terms.php">Terms</a> | <a href="/v5/documentation.php">Documentation</a> | <a href="/v5/privacy.php">Privacy Policy</a> | <a href="/v5/contact.php">Contact (1-888-261-4837)</a> <div class="copy">© USA Grant Applications Copyright <?php echo date('Y');?></div>
</div>
</div>
<img src="https://www.surfcrm.com/lcapi/KeywordImpressionTracking.php?site=usaga&ip_address=<?= $_SERVER['REMOTE_ADDR'];?>&keywords=<?= urlencode($_SESSION['keywords']);?>&landing_page=<?= urlencode($_SESSION['landing_page']);?>&referer_domain=<?= urlencode($_SESSION['referer_domain']);?>" />
<?php include($_SERVER['DOCUMENT_ROOT'].'/google_bing_tracking.php'); ?>
</body>
</html>