| 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
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/php_header.php');
$title = '';
$body_class = 'index';
$categories = get_categories();
require_once($_SERVER['DOCUMENT_ROOT'].'/v5/header.php');
?>
<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) {
switch(step) {
case 'busStep1':
case 'reaStep1':
case 'perStep1':
case 'eduStep1':
case 'comStep1':
return true;
break;
case 'busStep2':
case 'reaStep2':
case 'perStep2':
case 'eduStep2':
case 'comStep2':
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=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;
}
break;
}
}
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();
});
</script>
<?php require_once($_SERVER['DOCUMENT_ROOT'].'/v5/sidebar.php');?>
<div class="main">
<div class="main_">
<h1>Applications Are Available Today!</h1>
<p>As you know, each and every year <strong>BILLIONS of dollars are awarded</strong> to people and organizations in the form of free money and various other types of funding. This funding is specifically available for disabled Americans. The unpleasant reality of having a disability is recognized by the federal government and private granting agencies, and is the basis for monetary assistance they provide in the form of grants for the disabled.</p>
<p>The federal government assists these minority groups by gifting disability grants to Americans within this specific population. This money comes from all different sources, including state and federal agencies, and through private corporations and foundations. However, more corporate and private foundations provide grant assistance to people seeking disability grants than within any other category. Most people know this money exists, but don't know where to apply, how much they qualify for, or even where to get an application.</p>
<p>Incidentally, the amount of money given away each year can vary, as well as the time of year the money is given away. Because of this, it is very important to check when the date of the application is due and when the money will be distributed. Many people think this money is given out at the beginning of the calendar year, but this is not always the case. Some entities gift out money several times a year, or even all year long, depending on who is eligible and who is not.</p>
<center><a href="#form"><img src="/images/apply_today.jpg" /></a></center>
<p>As you know, our country has bailed out banks, investment firms, and other failing businesses in recent years. It is, however, important to note that they are not the only ones giving out money. There are thousands of private corporations and foundations who have money to help disabled Americans - all available through different types of funding programs! Funding programs have eligibility criteria, which an applicant must meet before a funding application will even be considered. USA Grant Applications was designed to give you the help you need to locate and apply for disability funds, because if you are like most Americans, you just don't know where to start.</p>
<p>Here are some of the categories of assistance given away by different organizations through various types of programs:</p>
<ol class="show_numbers">
<li>Small and large business ventures, including start-up and expansion</li>
<li>Real estate ventures, including rehab, repair, low-cost housing, rentals, and hundreds of other real estate-related investments</li>
<li>Inventions</li>
<li>Community development</li>
<li>Historical building restoration</li>
<li>Medical research</li>
<li>Education</li>
<li>First-time home purchase</li>
<li>Disabled Americans</li>
<li>Minorities & Women</li>
</ol>
<div id="form">
<center><img src="/images/StepArrow2_top.png" /></center>
<a id="busLnk" data-section="business" class="main_section busLnk deselected">
<img src="/v5/images/icn_business_lrg.png" />
<h3>Business</h3>
</a>
<a id="reaLnk" data-section="realestate" class="main_section reaLnk deselected">
<img src="/v5/images/icn_real_estate_lrg.png" />
<h3>Real Estate</h3>
</a>
<a id="perLnk" data-section="personal" class="main_section perLnk deselected">
<img src="/v5/images/icn_personal_lrg.png" />
<h3>Personal</h3>
</a>
<a id="eduLnk" data-section="education" class="main_section eduLnk deselected">
<img src="/v5/images/icn_education_lrg.png" />
<h3>Education</h3>
</a>
<a id="comLnk" data-section="community" class="main_section comLnk deselected">
<img src="/v5/images/icn_community_lrg.png" />
<h3>Community</h3>
</a>
<div id="business" class="section">
<form method="post" action="/order.php" onsubmit="return check_validation('busStep2');">
<div id="busStep1" class="sub_section">
<h4 class="stpTitle">Select Any that Apply</h4>
<?php $counter = 0; if(!empty($categories['subcategories'])) {
echo '<ul>';
foreach($categories['subcategories'] as $subcats) {
if(isset($subcats['categories'][1])) { $counter++;
if($counter > 5) { $counter=1; echo '</ul><ul>'; }
?><li><label><input type="checkbox" class="check" name="subcategories[]" value="<?= $subcats['id'];?>" /><?= $subcats['name']; ?></label></li><?php
}
}
echo '</ul>';
}?>
<div class="clear_left"></div>
</div>
<div id="busStep2" class="sub_section">
<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>
<?php $granttype = 'business'; include($_SERVER['DOCUMENT_ROOT'].'/v5/inc/form.php'); ?>
</div>
<input type="hidden" name="form_version" value="v5" />
<input type="hidden" name="category_id" value="1" />
</form>
</div>
<div id="realestate" class="section">
<form method="post" action="/order.php" onsubmit="return check_validation('reaStep2');">
<div id="reaStep1" class="sub_section">
<h4 class="stpTitle">Select Any that Apply</h4>
<?php $counter = 0; if(!empty($categories['subcategories'])) {
echo '<ul>';
foreach($categories['subcategories'] as $subcats) {
if(isset($subcats['categories'][5])) { $counter++;
if($counter > 5) { $counter=1; echo '</ul><ul>'; }
?><li><label><input type="checkbox" class="check" name="subcategories[]" value="<?= $subcats['id'];?>" /><?= $subcats['name']; ?></label></li><?php
}
}
echo '</ul>';
}?>
<div class="clear_left"></div>
</div>
<div id="reaStep2" class="sub_section">
<?php $granttype = 'real-estate'; include($_SERVER['DOCUMENT_ROOT'].'/v5/inc/form.php'); ?>
</div>
<input type="hidden" name="form_version" value="v5" />
<input type="hidden" name="category_id" value="5" />
</form>
</div>
<div id="personal" class="section">
<form method="post" action="/order.php" onsubmit="return check_validation('perStep2');">
<div id="perStep1" class="sub_section">
<h4 class="stpTitle">Select Any that Apply</h4>
<?php $counter = 0; if(!empty($categories['subcategories'])) {
echo '<ul>';
foreach($categories['subcategories'] as $subcats) {
if(isset($subcats['categories'][4])) { $counter++;
if($counter > 5) { $counter=1; echo '</ul><ul>'; }
?><li><label><input type="checkbox" class="check" name="subcategories[]" value="<?= $subcats['id'];?>" /><?= $subcats['name']; ?></label></li><?php
}
}
echo '</ul>';
}?>
<div class="clear_left"></div>
</div>
<div id="perStep2" class="sub_section">
<?php $granttype = 'personal'; include($_SERVER['DOCUMENT_ROOT'].'/v5/inc/form.php'); ?>
</div>
<input type="hidden" name="form_version" value="v5" />
<input type="hidden" name="category_id" value="4" />
</form>
</div>
<div id="education" class="section">
<form method="post" action="/order.php" onsubmit="return check_validation('eduStep2');">
<div id="eduStep1" class="sub_section">
<h4 class="stpTitle">Select Any that Apply</h4>
<?php $counter = 0; if(!empty($categories['subcategories'])) {
echo '<ul>';
foreach($categories['subcategories'] as $subcats) {
if(isset($subcats['categories'][2])) { $counter++;
if($counter > 5) { $counter=1; echo '</ul><ul>'; }
?><li><label><input type="checkbox" class="check" name="subcategories[]" value="<?= $subcats['id'];?>" /><?= $subcats['name']; ?></label></li><?php
}
}
echo '</ul>';
}?>
<div class="clear_left"></div>
</div>
<div id="eduStep2" class="sub_section">
<?php $granttype = 'education'; include($_SERVER['DOCUMENT_ROOT'].'/v5/inc/form.php'); ?>
</div>
<input type="hidden" name="form_version" value="v5" />
<input type="hidden" name="category_id" value="2" />
</form>
</div>
<div id="community" class="section">
<form method="post" action="/order.php" onsubmit="return check_validation('comStep2');">
<div id="comStep1" class="sub_section">
<h4 class="stpTitle">Select Any that Apply</h4>
<?php $counter = 0; if(!empty($categories['subcategories'])) {
echo '<ul>';
foreach($categories['subcategories'] as $subcats) {
if(isset($subcats['categories'][3])) { $counter++;
if($counter > 5) { $counter=1; echo '</ul><ul>'; }
?><li><label><input type="checkbox" class="check" name="subcategories[]" value="<?= $subcats['id'];?>" /><?= $subcats['name']; ?></label></li><?php
}
}
echo '</ul>';
}?>
<div class="clear_left"></div>
</div>
<div id="comStep2" class="sub_section">
<?php $granttype = 'community'; include($_SERVER['DOCUMENT_ROOT'].'/v5/inc/form.php'); ?>
</div>
<input type="hidden" name="form_version" value="v5" />
<input type="hidden" name="category_id" value="3" />
</form>
</div>
</div>
<p>Don't worry about your present financial situation. Funding applications do not require collateral, credit checks, security deposits or co-signees. You can even apply if you have a personal bankruptcy. Also, remember that government funding is not available for personal expenses or for paying off debt. However, there may be other assistance programs available to support you in bettering your personal 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>
<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 comes with a GUARANTEE. If you do not qualify for funding for which you are eligible, your entire payment will be refunded to you immediately. Either you find funding that suits your situation, or you pay nothing! All you do is provide our support staff with the funding agency you applied to and the response you received, and your fee will be refunded immediately.</p>
<p>Don't read any further if you are not sincerely interested in securing funding for your business. We do not want to take your money if this is not something you are dedicated and passionate about doing. There is a lot of time and money put into researching these applications, and we want to be sure you are as serious about getting your possible 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. Also, because we are not a funder, we cannot 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 don't know how or who to apply to, not to mention they feel it is too hard. It may be easier than you 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>
</div>
</div>
<?php require_once($_SERVER['DOCUMENT_ROOT'].'/v5/footer.php');?>