var http_request = false;

var ajax = new Array();

// ****************************************************************************************************************************************
// ********** LOAD PARTNER LINKS FOR HOME PAGE ********************************************************************************************
var xmlhttp_partner_links;

function GetXmlHttpObjectpartner_links() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function updatepartner_links() {
	if (xmlhttp_partner_links.readyState==4) {
		document.getElementById("partner_links").innerHTML=xmlhttp_partner_links.responseText;
		document.body.style.cursor = "default";
	}
}
function loadpartner_links() {
	document.body.style.cursor = "wait";
	xmlhttp_partner_links=GetXmlHttpObjectpartner_links();
	if (xmlhttp_partner_links==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="partner_links.php";
	url=url+"?sid="+Math.random();
	xmlhttp_partner_links.onreadystatechange=updatepartner_links;
	xmlhttp_partner_links.open("GET",url,true);
	xmlhttp_partner_links.send(null);
}
// ****************************************************************************************************************************************
// ****************************************************************************************************************************************

function load_how_to_articles() {
	document.getElementById('how_to_articles').options.length = 0;	// Empty select box
	var index = ajax.length;
	ajax[index] = new sack();
		
	ajax[index].requestFile = 'load_how_to_articles.php';			// load our category list
	ajax[index].onCompletion = function(){ update_how_to_articles_list(index) };	// Specify function that will be executed after file has been found
	ajax[index].runAJAX();		// Execute AJAX function
}

function update_how_to_articles_list(index) {
	var obj = document.getElementById('how_to_articles');
	eval(ajax[index].response);	// Executing the response from Ajax as Javascript code	
}


function load_previous_podcasts() {
	document.getElementById('previous_podcasts').options.length = 0;	// Empty select box
	var index = ajax.length;
	ajax[index] = new sack();
		
	ajax[index].requestFile = 'load_previous_podcasts.php';			// load our category list
	ajax[index].onCompletion = function(){ update_previous_podcast_list(index) };	// Specify function that will be executed after file has been found
	ajax[index].runAJAX();		// Execute AJAX function
}

function update_previous_podcast_list(index) {
	var obj = document.getElementById('previous_podcasts');
	eval(ajax[index].response);	// Executing the response from Ajax as Javascript code	
}


function loadmobilecarriers() {
	document.getElementById('carrier_index').options.length = 0;	// Empty select box
	var index = ajax.length;
	ajax[index] = new sack();
		
	ajax[index].requestFile = 'loadmobilecarriers.php';			// load our category list
	ajax[index].onCompletion = function(){ updatecarrierlist(index) };	// Specify function that will be executed after file has been found
	ajax[index].runAJAX();		// Execute AJAX function
}
function updatecarrierlist(index) {
	var obj = document.getElementById('carrier_index');
	eval(ajax[index].response);	// Executing the response from Ajax as Javascript code	
}

function getvegetablelist(sel)
{
	var newcategoryindex = sel.options[sel.selectedIndex].value


	document.getElementById('subcategoryindex').options.length = 0;	// Empty select box


	var index = ajax.length;
	ajax[index] = new sack();
		
	ajax[index].requestFile = 'loadsubcategories.php?categoryindex='+newcategoryindex;			// load our category list
	ajax[index].onCompletion = function(){ createsubcategories(index) };	// Specify function that will be executed after file has been found
	ajax[index].runAJAX();		// Execute AJAX function
}

function createsubcategories(index)
{
	var obj = document.getElementById('subcategoryindex');
	eval(ajax[index].response);	// Executing the response from Ajax as Javascript code	
}


function getproductslist()
{

	document.getElementById('categoryindex').options.length = 0;	// Empty select box
	var index = ajax.length;
	ajax[index] = new sack();
		
	ajax[index].requestFile = 'loadcategories.php';			// load our category list
	ajax[index].onCompletion = function(){ createcategories(index) };	// Specify function that will be executed after file has been found
	ajax[index].runAJAX();		// Execute AJAX function

}

function createcategories(index)
{
	var obj = document.getElementById('categoryindex');
	eval(ajax[index].response);	// Executing the response from Ajax as Javascript code	
}





   function makePOSTRequest(url, parameters) {
      http_request = false;
      if (window.XMLHttpRequest) { // Mozilla, Safari,...
         http_request = new XMLHttpRequest();
         if (http_request.overrideMimeType) {
         	// set type accordingly to anticipated content type
            //http_request.overrideMimeType('text/xml');
            http_request.overrideMimeType('text/html');
         }
      } else if (window.ActiveXObject) { // IE
         try {
            http_request = new ActiveXObject("Msxml2.XMLHTTP");
         } catch (e) {
            try {
               http_request = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) {}
         }
      }
      if (!http_request) {
         alert('Cannot create XMLHTTP instance');
         return false;
      }
      
      http_request.onreadystatechange = alertContents;
      http_request.open('POST', url, true);
      http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
      http_request.setRequestHeader("Content-length", parameters.length);
      http_request.setRequestHeader("Connection", "close");
      http_request.send(parameters);
   }

   function POSTNewsletterRequest(url, parameters) {
      http_request = false;
      if (window.XMLHttpRequest) { // Mozilla, Safari,...
         http_request = new XMLHttpRequest();
         if (http_request.overrideMimeType) {
         	// set type accordingly to anticipated content type
            //http_request.overrideMimeType('text/xml');
            http_request.overrideMimeType('text/html');
         }
      } else if (window.ActiveXObject) { // IE
         try {
            http_request = new ActiveXObject("Msxml2.XMLHTTP");
         } catch (e) {
            try {
               http_request = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) {}
         }
      }
      if (!http_request) {
         alert('Cannot create XMLHTTP instance');
         return false;
      }
      
      http_request.onreadystatechange = alertContentsNEWSLETTER;
      http_request.open('POST', url, true);
      http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
      http_request.setRequestHeader("Content-length", parameters.length);
      http_request.setRequestHeader("Connection", "close");
      http_request.send(parameters);
   }

	function alertContentsNEWSLETTER() {
		var txt='';
		txt+="<table width=100% class=\"maintableborder\">";
		txt+="	<tr class=\"tablerow_header_graphic\">";
		txt+="		<td valign=top align=left>";
		txt+="			<table width=100%>";
		txt+="				<tr>";
		txt+="					<td valign=top align=left>";
		txt+="						<span class=\"websiteheaderfont\"><b>Thank You!</b></span>";
		txt+="					</td>";
		txt+="				</tr>";
		txt+="				<tr>";
		txt+="					<td valign=top align=left>";
		txt+="						<br>";
		txt+="					</td>";
		txt+="				</tr>";
		txt+="				<tr>";
		txt+="					<td valign=top align=left>";
		txt+="						<span class=\"websiteheaderfont\">You will recieve an email shortly with a link to verify and activate your email address.</span>";
		txt+="					</td>";
		txt+="				</tr>";
		txt+="			</table>";
		txt+="		</td>";
		txt+="	</tr>";
		txt+="</table>";
		document.body.style.cursor = "wait";


		if (http_request.readyState == 4) {
        		if (http_request.status == 200) {
		        	document.getElementById('newsletter').innerHTML = txt;  
		        	document.getElementById('freeseedsdiv').innerHTML = txt;
		        	document.getElementById('freereportdiv').innerHTML = txt;
				document.body.style.cursor = "default";          
		        } else {
        			alert('There was a problem with the request.');
	         	}
      		}
	}
	function alertContentsmobilephone() {
		var txt='';
		txt+="<table>";
		txt+="	<tr>";
		txt+="		<td valign=top align=left>";
		txt+="			<span class=\"websiteheaderfont\"><b>Mobile Update Subscription</b></span>";
		txt+="		</td>";
		txt+="	</tr>";
		txt+="	<tr>";
		txt+="		<td valign=top align=left>";
		txt+="			<br>";
		txt+="		</td>";
		txt+="	</tr>";
		txt+="	<tr>";
		txt+="		<td valign=top align=left>";
		txt+="			<span class=\"websiteheaderfont\">Thank you for subscribing to our mobile updates.  You will recieve a text message shortly.</span>";
		txt+="		</td>";
		txt+="	</tr>";
		txt+="</table>";
		document.body.style.cursor = "wait";


		if (http_request.readyState == 4) {
        		if (http_request.status == 200) {
		        	document.getElementById('mobilephonediv').innerHTML = txt;  
				document.body.style.cursor = "default";          
		        } else {
        			alert('There was a problem with the request.');
	         	}
      		}
	}
   function POSTmobilephoneRequest(url, parameters) {
      http_request = false;
      if (window.XMLHttpRequest) { // Mozilla, Safari,...
         http_request = new XMLHttpRequest();
         if (http_request.overrideMimeType) {
         	// set type accordingly to anticipated content type
            //http_request.overrideMimeType('text/xml');
            http_request.overrideMimeType('text/html');
         }
      } else if (window.ActiveXObject) { // IE
         try {
            http_request = new ActiveXObject("Msxml2.XMLHTTP");
         } catch (e) {
            try {
               http_request = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) {}
         }
      }
      if (!http_request) {
         alert('Cannot create XMLHTTP instance');
         return false;
      }
      
      http_request.onreadystatechange = alertContentsmobilephone;
      http_request.open('POST', url, true);
      http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
      http_request.setRequestHeader("Content-length", parameters.length);
      http_request.setRequestHeader("Connection", "close");
      http_request.send(parameters);
   }
   function getMOBILPHONE(obj) {
	var newnumber='';
	//make sure a phone number is filled in
	if (document.getElementById("carrier_index").value.length>0 && document.getElementById("mobile_phone_number").value.length>11) {
		//we now strip the dashes from the phonenumber
		newnumber = document.getElementById("mobile_phone_number").value;
		while (newnumber.indexOf("-")>-1) {
			newnumber = newnumber.replace(/-/, "");
		}
		var poststr = "mobile_phone_number=" + encodeURI(newnumber) + "&carrier_index=" + encodeURI(document.getElementById("carrier_index").value);
		POSTmobilephoneRequest('save_mobilephone.php', poststr);
	}
	else {
		alert("Select a mobile carrier and please enter a valid mobile phone number");
	}
   }

   function getFREEREPORT(obj) {
	if (document.getElementById("freereportemail").value.length>1) {
		var poststr = "email=" + encodeURI(document.getElementById("freereportemail").value );
		POSTNewsletterRequest('save_newsletter.php', poststr);
	}
	else {
		alert("Please enter a valid email address");
	}
   }

   function getFREESEEDS(obj) {
	if (document.getElementById("freeseedsemail").value.length>1) {
		var poststr = "email=" + encodeURI(document.getElementById("freeseedsemail").value );
		POSTNewsletterRequest('save_newsletter.php', poststr);
	}
	else {
		alert("Please enter a valid email address");
	}
   }

   function getNEWSLETTER(obj) {
	if (document.getElementById("newsletteremail").value.length>1) {
		var poststr = "email=" + encodeURI(document.getElementById("newsletteremail").value );
		POSTNewsletterRequest('save_newsletter.php', poststr);
	}
	else {
		alert("Please enter a valid email address");
	}
   }

	function alertContents() {
		var txt='';
			document.body.style.cursor = "wait";

			txt+="<table width=100% class=\"maintableborder\">";
			txt+="	<tr class=\"tablerow_header_graphic\">";
			txt+="		<td valign=top align=left>";
			txt+="			<span class=\"websiteheaderfont\">Contact Us</span>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="	<tr>";
			txt+="		<td valign=top align=left>";
			txt+="			<br>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="	<tr>";
			txt+="		<td valign=top align=left>";
			txt+="			<span class=\"websiteheaderfont\">Your message has been sent to our customer service department.  One of our hard working staff members will respond to you shortly.  In the meantime if you have any other questions please do not hesitate to contact us via email or regular mail as noted below.  To curtail spammers from overloading our inbox, our online form allows one message to be sent per day per IP address.</span>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="	<tr>";
			txt+="		<td valign=top align=left>";
			txt+="			<br>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="	<tr>";
			txt+="		<td valign=top align=left>";
			txt+="			<table border=0>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<table class=\"maintableborder\" cellspacing=1 cellpadding=1>";
			txt+="							<tr class=\"tablerow_header_graphic\">";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><b>Snail Mail</b></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\">Mike the Gardener Enterprises</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\">PO Box 1773</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\">Burlington, NJ  08016</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="						</table>";
			txt+="					</td>";
			txt+="					<td valign=top align=left>";
			txt+="						<table class=\"maintableborder\" cellspacing=1 cellpadding=1>";
			txt+="							<tr class=\"tablerow_header_graphic\">";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><b>Email Address</b></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"mailto:customerservice@averagepersongardening.com\">CustomerService@averagepersongardening.com</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="						</table>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="			</table>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="</table>";
      if (http_request.readyState == 4) {
         if (http_request.status == 200) {
            //alert(http_request.responseText);
            //result = http_request.responseText;
            document.getElementById('content').innerHTML = txt;  
		document.body.style.cursor = "default";          
         } else {
            alert('There was a problem with the request.');
         }
      }
   }
   
   function get(obj) {
	if (document.getElementById("myemail").value.length>0) {
		if (document.getElementById("subject").value.length>0) {
			if (document.getElementById("mymessage").value.length>0) {
				var poststr = "email=" + encodeURI( document.getElementById("myemail").value ) + "&subject=" + encodeURI( document.getElementById("subject").value ) + "&mymessage=" + encodeURI( document.getElementById("mymessage").value);
				makePOSTRequest('contact_us_mail.php', poststr);
			} else {
				alert('Please enter a message');
			}
		} else {
			alert('Please enter a subject');
		}
	} else {
		alert('Please enter a valid email address');
	}
	
   }


function window_change(id) {
	var txt='';
	
	//clear any timer intervals on the image rotation

	switch (id){
		case 1:	// contact us
			txt="<form method=\"post\" action=\"contact_us_mail.php\" name=\"frmcontact\" id=\"frmcontact\">";
			txt+="<table width=100% class=\"maintableborder\">";
			txt+="	<tr>";
			txt+="		<td valign=top align=left class=\"tablerow_header_graphic\">";
			txt+="			<table width=100% cellspacing=0 cellpadding=0 border=0>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<span class=\"websiteheadersectionfont\"><b>Contact Us</b></span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left rowspan=10>";
			txt+="						<img src=\"contact_us.jpg\">";
			txt+="					</td>";
			txt+="					<td valign=top align=left>";
			txt+="						<span class=\"websiteheaderfont\">We have three methods by which you can reach us.  Contact us by filling in the information on this form and clicking the send button, click the email link below to send us an email, or send us regular postal delivery mail to our address.</span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<span class=\"websiteheaderfont\">Email:</span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<input type=\"text\" name=\"email\" size=75 class=\"maintableborder\" id=\"myemail\">";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<span class=\"websiteheaderfont\">Subject:</span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<input type=\"text\" name=\"subject\" size=75 class=\"maintableborder\" id=\"subject\">";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<span class=\"websiteheaderfont\">Message:</span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<textarea name=\"mymessage\" cols=50 rows=10 class=\"maintableborder\" id=\"mymessage\"></textarea>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<table border=0>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<table class=\"maintableborder\" cellspacing=1 cellpadding=1>";
			txt+="										<tr class=\"tablerow_header_graphic\">";
			txt+="											<td valign=top align=left>";
			txt+="												<span class=\"websitefont\"><b>Snail Mail</b></span>";
			txt+="											</td>";
			txt+="										</tr>";
			txt+="										<tr>";
			txt+="											<td valign=top align=left>";
			txt+="												<span class=\"websitefont\">Mike the Gardener Enterprises</span>";
			txt+="											</td>";
			txt+="										</tr>";
			txt+="										<tr>";
			txt+="											<td valign=top align=left>";
			txt+="												<span class=\"websitefont\">PO Box 1773</span>";
			txt+="											</td>";
			txt+="										</tr>";
			txt+="										<tr>";
			txt+="											<td valign=top align=left>";
			txt+="												<span class=\"websitefont\">Burlington, NJ  08016</span>";
			txt+="											</td>";
			txt+="										</tr>";
			txt+="									</table>";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<table class=\"maintableborder\" cellspacing=1 cellpadding=1>";
			txt+="										<tr class=\"tablerow_header_graphic\">";
			txt+="											<td valign=top align=left>";
			txt+="												<span class=\"websitefont\"><b>Email Address</b></span>";
			txt+="											</td>";
			txt+="										</tr>";
			txt+="										<tr>";
			txt+="											<td valign=top align=left>";
			txt+="												<span class=\"websitefont\"><a href=\"mailto:customerservice@averagepersongardening.com\">CustomerService@averagepersongardening.com</a></span>";
			txt+="											</td>";
			txt+="										</tr>";
			txt+="										<tr>";
			txt+="											<td valign=top align=left>";
			txt+="												<br>";
			txt+="											</td>";
			txt+="										</tr>";
			txt+="										<tr>";
			txt+="											<td valign=top align=left>";
			txt+="												<br>";
			txt+="											</td>";
			txt+="										</tr>";
			txt+="									</table>";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<input type=button name=\"button\" value=\"Send\" class=\"submit_button\" onclick=\"javascript:get(this.parentNode);\">";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="						</table>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="			</table>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="</table>";
			txt+="</form>";
			break;
		case 2:	// about
			txt+="<table width=100% class=\"maintableborder\">";
			txt+="	<tr class=\"tablerow_header_graphic\"><td valign=top align=left>";
			txt+="		<table width=100% cellspacing=0 cellpadding=0 border=0>";
			txt+="			<tr>";
			txt+="				<td valign=top align=left colspan=2>";
			txt+="					<span class=\"websiteheadersectionfont\">About Us</span>";
			txt+="				</td>";
			txt+="			</tr>";
			txt+="			<tr>";
			txt+="				<td valign=top align=left>";
			txt+="					<br>";
			txt+="				</td>";
			txt+="			</tr>";
			txt+="			<tr>";
			txt+="				<td valign=top align=left>";
			txt+="					<table width=100% border=0>";
			txt+="						<tr>";
			txt+="							<td valign=top align=left>";
			txt+="								<span class=\"websiteheaderfont\">Welcome to Mike the Gardener Enterprises!</span>";
			txt+="							</td>";
			txt+="						</tr>";
			txt+="						<tr>";
			txt+="							<td valign=top align=left>";
			txt+="								<br>";
			txt+="							</td>";
			txt+="						</tr>";
			txt+="						<tr>";
			txt+="							<td valign=top align=left>";
			txt+="								<img src=\"mike_the_gardener.jpg\" alt=\"Mike the Gardener\" border=\"0\" align=\"left\"><span class=\"websiteheaderfont\">We are the exclusive home for the <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a>. We also provide to you all the information you will need to turn those seeds into a bountiful harvest!</span><br><br><span class=\"websiteheaderfont\">Mike the Gardener Enterprises was founded by Michael Podlesny, a 3rd generational home vegetable gardener and published author of the book <i><a href=\"http://www.amazon.com/Vegetable-Gardening-Average-Person-vegetable/dp/0557074266/ref=sr_1_1?ie=UTF8&s=books&qid=1248269180&sr=1-1\" target=\"_blank\">Vegetable Gardening for the Average Person</a></i>, who has been vegetable gardening himself for nearly 30 years.  Mike`s vegetable gardening tips and tricks have been featured in newspapers, magazines and blogs around the world.  He has also appeared on <a href=\"http://youtu.be/9XwxPWz3EbM\" target=\"_blank\">ABC</a> and <a href=\"http://youtu.be/mj41jR3N-Ag\" target=\"_blank\">NBC</a> talking about vegetable gardening and the <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a></span>";
			txt+="								<br><br>";
			txt+="								<span class=\"websiteheaderfont\">Our goal is to make home vegetable gardening easy and affordable for everybody and just as importantly, to make sure you have all of the information and tools at your fingertips so that you can enjoy the most benefits from a bountiful harvest.</span>";
			txt+="								<br><br>";
			txt+="								<span class=\"websiteheaderfont\">On our website you will find podcasts, vegetable gardening tutorials, information on the home vegetable gardening industry and Mike`s, <i>Mike the Gardener Minute</i> video, where in one minute Mike will share with you some great Vegetable Gardening tips you can use right away.</span>";
			txt+="								<br><br>";
			txt+="								<span class=\"websiteheaderfont\">It just would not be right to sell you the seeds and home vegetable gardening products that you need, then not give you the right information to increase your chances of success.</span>";
			txt+="								<br><br>";
			txt+="								<span class=\"websiteheaderfont\">Don't forget to connect with us on <a href=\"http://www.linkedin.com/in/mikethegardener\" target=\"_blank\">Linked IN</a>, follow us on <a href=\"http://twitter.com/mikethegardener\" target=\"_blank\">Twitter</a>, join our <a href=\"http://www.facebook.com/pages/Vegetable-Gardening/88717240962\" target=\"_blank\">Facebook</a> fan page, and get vegetable gardening information sent directly to your <a href=\"http://www.amazon.com/Gardening-for-the-Average-Person/dp/B002B55A6G/ref=sr_1_1?ie=UTF8&s=digital-text&qid=1255486645&sr=1-1\" target=\"_blank\">Kindle</a>.  We are confident that our website has everything you will need to succeed at home vegetable gardening.</span>";
			txt+="								<br><br>";
			txt+="								<span class=\"websiteheaderfont\">Remember, we are always here to help.  On our <a href=\"javascript: window_change(1);\">Contact</a> page we have given you a variety of ways to reach us.  You can submit a request through our online form, <a href=\"mailto:customerservice@averagepersongardening.com\">email us</a> directly, or send us some good old fashioned snail mail through the U.S. Postal Service.  If you ever have a question do not hesitate to ask.</span>";
			txt+="								<br><br>";
			txt+="								<span class=\"websiteheaderfont\">Happy Home Vegetable Gardening!</span>";
			txt+="							</td>";
			txt+="						</tr>";
			txt+="					</table>";
			txt+="				</td>";
			txt+="			</tr>";
			txt+="		</table>";
			txt+="	</td></tr>";
			txt+="</table>";
			break;
		case 3: //products
			txt+='<table width=100% class="maintableborder">';
			txt+='	<tr class="tablerow_header_graphic">';
			txt+='		<td valign=top align=left>';
			txt+='			<table width=100% cellspacing=0 cellpadding=0 border=0>';
			txt+='				<tr>';
			txt+='					<td valign=top align=left colspan=2>';
			txt+='						<span class="websiteheadersectionfont"><b>Online Store</b></span>';
			txt+='					</td>';
			txt+='				</tr>';
			txt+='				<tr>';
			txt+='					<td valign=top align=left>';
			txt+='						<span class="websiteheaderfont">Welcome to our online store page.  On here you will find a variety of home gardening supplies available for sale at very low costs.  If you ever have any questions about our online store please feel free to contact us at anytime.</span>';
			txt+='					</td>';
			txt+='				</tr>';
			txt+='				<tr>';
			txt+='					<td valign=top align=left>';
			txt+='						<br>';
			txt+='					</td>';
			txt+='				</tr>';
			txt+='				<tr>';
			txt+='					<td valign=top align=left>';
			txt+='						<br>';
			txt+='					</td>';
			txt+='				</tr>';
			txt+='				<tr>';
			txt+='					<td valign=top align=left>';
			txt+='						<table width=100%>';
			txt+='							<tr>';
			txt+='								<td valign=top align=left>';
			txt+='									<span class="websiteheaderfont">Product Category:</span>';
			txt+='								</td>';
			txt+='								<td valign=top align=left>';
			txt+='									<span class="websiteheaderfont">Product Subcategory:</span>';
			txt+='								</td>';
			txt+='							</tr>';
			txt+='							<tr>';
			txt+='								<td valign=top align=left>';
			txt+='									<select class="selectionbox" name="categoryindex" size="10" id="categoryindex" onchange="getvegetablelist(this)">>';
			txt+='										<option value="0"></option>';
			txt+='									</select>';
			txt+='								</td>';
			txt+='								<td valign=top align=left>';
			txt+='									<select class="selectionbox" name="subcategoryindex" size="10" id="subcategoryindex" onchange="showproduct(this.value)">';
			txt+='										<option value="0"></option>';
			txt+='									</select>';
			txt+='								</td>';
			txt+='							</tr>';
			txt+='							<tr>';
			txt+='								<td valign=top align=left colspan=2>';
			txt+='									<span class="websiteheaderfont">Products:</span>';
			txt+='								</td>';
			txt+='							</tr>';
			txt+='							<tr>';
			txt+='								<td valign=top align=left colspan=2>';
			txt+='									<span class="websiteheaderfont">Click the product name to display more detailed information</span>';
			txt+='								</td>';
			txt+='							</tr>';
			txt+='							<tr>';
			txt+='								<td valign=top align=left colspan=2>';
			txt+='									<div id="txtHint"></div>';
			txt+='								</td>';
			txt+='							</tr>';
			txt+='						</table>';
			txt+='					</td>';
			txt+='				</tr>';
			txt+='			</table>			';
			txt+='		</td>';
			txt+='	</tr>';
			txt+='</table>			';
			break;
		case 4:	//shopping cart
			txt+='<table width=100% class="maintableborder" border=0 cellspacing=0 cellpadding=0>';
			txt+='	<tr>';
			txt+='		<td valign=top align=left class="tablerow_header_graphic">';
			txt+='			<table width=99% cellspacing=0 cellpadding=0 border=0>';
			txt+='				<tr class="tablerow_header_graphic">';
			txt+='					<td valign=top align=left colspan=2>';
			txt+='						<span class="websiteheadersectionfont">Shopping Cart</span>';
			txt+='					</td>';
			txt+='				</tr>';
			txt+='				<tr>';
			txt+='					<td valign=top align=left>';
			txt+='						<br>';
			txt+='					</td>';
			txt+='				</tr>';
			txt+='				<tr>';
			txt+='					<td valign=top align=left>';
			txt+='						<div id="shoppingcartinformation"></div>';
			txt+='					</td>';
			txt+='				</tr>';
			txt+='			</table>';
			txt+='		</td>';
			txt+='	</tr>';
			txt+='</table>			';
			break;
		case 5:	//go mobile
			txt+='<table width=100% class="maintableborder" border=0 cellspacing=0 cellpadding=0>';
			txt+='	<tr class="tablerow_header_graphic">';
			txt+='		<td valign=top align=left colspan=2>';
			txt+='			<span class="websiteheadersectionfont">Mobile Home Vegetable Gardening</span>';
			txt+='		</td>';
			txt+='	</tr>';
			txt+='	<tr>';
			txt+='		<td valign=top align=left>';
			txt+='			<br>';
			txt+='		</td>';
			txt+='	</tr>';
			txt+='	<tr>';
			txt+='		<td valign=top align=left>';
			txt+='			<span class="websiteheaderfont">Now you can take home vegetable gardening with you everywhere you go with our mobile text alert updates.  Mobile subscribers receive special discounts, offers and savings that no one else will receive.  Although this service is provided to you free of charge, check with your mobile provider for their text messaging costs before you register.</span>';
			txt+='		</td>';
			txt+='	</tr>';
			txt+='	<tr>';
			txt+='		<td valign=top align=left>';
			txt+='			<br>';
			txt+='		</td>';
			txt+='	</tr>';
			txt+='	<tr>';
			txt+='		<td valign=top align=left>';
			txt+='			<span class="websiteheaderfont">Simply select your carrier from the list, enter your mobile phone number with area code, and click on send.  We will send you a confirmation text message shortly thereafter to let you know you are subscribed to this free service.</span>';
			txt+='		</td>';
			txt+='	</tr>';
			txt+='	<tr>';
			txt+='		<td valign=top align=left>';
			txt+='			<br>';
			txt+='		</td>';
			txt+='	</tr>';
			txt+='	<tr>';
			txt+='		<td valign=top align=center>';
			txt+='			<div id="mobilephonediv"><form method="post" name="frmmobilephone" id="frmmobilephone">';
			txt+='				<table border=0 cellspacing=1 cellpadding=1 width=90%>';
			txt+='					<tr>';
			txt+='						<td valign=bottom align=left>';
			txt+='							<span class="websiteheaderfont"><b>Mobile Carrier</b></span>';
			txt+='						</td>';
			txt+='						<td valign=top align=left>';
			txt+='							<span class="websiteheaderfont"><b>Enter your mobile phone number<br>format: <i>xxx-xxx-xxxx</i></b></span>';
			txt+='						</td>';
			txt+='					</tr>';
			txt+='					<tr>';
			txt+='						<td valign=top align=left>';
			txt+='							<select name="carrier_index" id="carrier_index" size=10 class="selectionbox">';
			txt+='								<option value="0"></option>';
			txt+='							</select>';
			txt+='						</td>';
			txt+='						<td valign=top align=left>';
			txt+='							<input type="text" name="mobile_phone_number" maxlength="15" class="maintableborder">';
			txt+='						</td>';
			txt+='					</tr>';
			txt+='					<tr>';
			txt+='						<td valign=top align=center colspan=2>';
			txt+='							<input type=button name="button" value="Send" class="submit_button" onclick="javascript:getMOBILPHONE(this.parentNode);">';
			txt+='						</td>';
			txt+='					</tr>';
			txt+='				</table>';
			txt+='			</form></div>';
			txt+='		</td>';
			txt+='	</tr>';
			txt+='</table>			';
			break;
		case 6:	//recipes
		case 7:	//zone maps
			txt+="<table width=100% class=\"maintableborder\">";
			txt+="	<tr><td valign=top align=left class=\"tablerow_header_graphic\"><table width=100% border=0 cellspacing=0 cellpadding=0><tr>";
			txt+="		<td valign=top align=left colspan=2>";
			txt+="			<span class=\"websiteheadersectionfont\">North American Zone Map</span>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="	<tr>";
			txt+="		<td valign=top align=left>";
			txt+="			<br>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="	<tr>";
			txt+="		<td valign=top align=center>";
			txt+="			<img src=\"north_american_zone_map.jpg\" alt=\"North American Zone Map\" border=\"0\">";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="	<tr>";
			txt+="		<td valign=top align=left>";
			txt+="			<br>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="	<tr>";
			txt+="		<td valign=top align=left>";
			txt+="			<table border=0 cellspacing=1 cellpadding=1 class=\"maintableborder\">";
			txt+="				<tr>";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 1</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>1 Jun / 30 Jun Average date of the first frost - 1 Jul to 31 Jul vulnerable to frost 365 days per year.</span></td>";
			txt+="				</tr>";			
			txt+="				<tr bgcolor=\"#DFDFDF\">";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 2</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>1 May to 31 May Average dates first frost - 1 August to 31 August</span></td>";
			txt+="				</tr>";			
			txt+="				<tr>";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 3</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>1 May to 31 May Average dates first frost - 1 September to 30 September</span></td>";
			txt+="				</tr>";			
			txt+="				<tr bgcolor=\"#DFDFDF\">";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 4</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>1 May to 30 May Average dates the first frost - 1 September to 30 September</span></td>";
			txt+="				</tr>";			
			txt+="				<tr>";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 5</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>30 March to 30 April Average dates the first frost - 30 September to 30 October</span></td>";
			txt+="				</tr>";			
			txt+="				<tr bgcolor=\"#DFDFDF\">";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 6</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>30 Mach to 30 April Average dates the first frost - 30 September to 30 October</span></td>";
			txt+="				</tr>";			
			txt+="				<tr>";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 7</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>30 March to 30 April Average dates the first frost - 30 September to 30 October</span></td>";
			txt+="				</tr>";			
			txt+="				<tr bgcolor=\"#DFDFDF\">";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 8</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>28 February to 30 March Average dates the first frost - 30 October to 30 November</span></td>";
			txt+="				</tr>";			
			txt+="				<tr>";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 9</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>30 January to 28 February Average dates the last frost - 30 November to 30 December</span></td>";
			txt+="				</tr>";			
			txt+="				<tr bgcolor=\"#DFDFDF\">";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 10</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>30 January or before Average dates the first frost - 30 November to 30 December</span></td>";
			txt+="				</tr>";			
			txt+="				<tr>";
			txt+="					<td valign=top align=left><span class=websiteheaderfont><b>Zone 11</b></span></td>";
			txt+="					<td valign=top align=left width=\"90%\"><span class=websiteheaderfont>Frost all year round.  Concentrate on frost resistant crops.</span></td>";
			txt+="				</tr>";			
			txt+="			</table>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="	</table></td></tr>";
			txt+="</table>";
			break;	
		case 8:	//downloads
			txt+="<table width=100% class=\"maintableborder\">";
			txt+="	<tr>";
			txt+="		<td valign=top align=left class=\"tablerow_header_graphic\">";
			txt+="			<table width=100% cellspacing=0 cellpadding=0 border=0>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<span class=\"websiteheadersectionfont\"><b>Downloads</b></span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="					<td valign=top align=left colspan=10>";
			txt+="						<span class=\"websiteheaderfont\">Welcome to our downloads page.  On here we place documents, software and other information that we feel can be helpful and useful to you and your home vegetable gardening adventures.  Simply click on the link next to the item you want to download and follow the on screen instructions.</span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<table cellspacing=0 cellpadding=0 border=0>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websiteheaderfont\"><a href=\"http://www.csrees.usda.gov/Extension/\" target=\"_blank\">A searchable index for Co-Ops throughout the United States</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websiteheaderfont\"><a href=\"seeds_club_fundraiser_brochure.pdf\" target=\"_blank\">Seeds Club as a Fundraiser Brochure</a> - Does your non-profit group need to raise funds?  If so, we want to help. You can now sell club memberships and retain 50% of what your organization sells.  Here is our brochure that outlines how your organization can get started.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left colspan=2>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websiteheaderfont\"><a href=\"seeds_club_fundraiser_order_form.pdf\" target=\"_blank\">Seeds Club Order Forms</a> - This is the order form that you will receive when you sign up to sell Seeds Club memberships to raise funds for your organization.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left colspan=2>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websiteheaderfont\"><a href=\"pHVegetableList.pdf\" target=\"_blank\">pH List of Vegetables, Fruits and Herbs</a> - Displays what the pH level of your soil should be for many popular varieties of vegetables, fruits and herbs grown by the home vegetable gardener.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left colspan=2>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websiteheaderfont\"><a href=\"frost_zones.pdf\" target=\"_blank\">Map & Description of Frost Zones in the United States of America & Europe</a> - Displays zone information for both the USA and Europe as to when frost will begin and end in various areas.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left colspan=2>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websiteheaderfont\"><a href=\"planting_distances.pdf\" target=\"_blank\">Distance between planting seeds</a> - Displays how far apart you should plant seeds in your home vegetable garden.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left colspan=2>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websiteheaderfont\"><a href=\"seed_depths.pdf\" target=\"_blank\">Seed Depths</a> - Displays a listing of many varieties of fruits, vegetables and herbs of how deep you should plant their seeds.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left colspan=2>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websiteheaderfont\"><a href=\"germination_soil_temperatures.pdf\" target=\"_blank\">Soil Temperatures</a> - Displays a listing of soil temperatures (both Fahrenheit and Celsius) for many varieties of fruits, vegetables and herbs for optimal germination.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="						</table>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="			</table>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="</table>";
			break;		
		case 9:	//media page
			txt+="<table width=100% class=\"maintableborder\">";
			txt+="	<tr>";
			txt+="		<td valign=top align=left class=\"tablerow_header_graphic\">";
			txt+="			<table width=100% cellspacing=0 cellpadding=0 border=0>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<span class=\"websiteheadersectionfont\"><b>Press Room</b></span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left colspan=10>";
			txt+="						<span class=\"websiteheaderfont\"><b>Mike the Gardener Enterprises, LLC Press Room</b></span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left><div id=\"press_scroll\" class=\"div_tag_scroll\">";
			txt+="						<table cellspacing=0 cellpadding=0 border=0>";

			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">January 31, 2012</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://upandrunning.bplans.com/2012/01/31/meet-the-iambplans-winners-mike-the-gardener-and-his-tips-for-growing-your-businesses-social-media-presence/\" target=\"_blank\"><img src=\"bplans.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike the Gardener Enterprises, LLC was featured on <a href=\"http://upandrunning.bplans.com/2012/01/31/meet-the-iambplans-winners-mike-the-gardener-and-his-tips-for-growing-your-businesses-social-media-presence/\" target=\"_blank\">bplans.com</a> for tips on growing a businesses social media presence.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";

			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">January 24, 2012</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.sfgate.com/cgi-bin/article.cgi?f=/g/a/2012/01/24/prweb9121432.DTL\" target=\"_blank\"><img src=\"sf_chronicle.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.sfgate.com/cgi-bin/article.cgi?f=/g/a/2012/01/24/prweb9121432.DTL\" target=\"_blank\">Postal Rate Increase Will Not Affect Mail Order Vegetable Seed Prices</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";

			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">January 19, 2012</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.sheknows.com/home-and-gardening/articles/852959/how-to-grow-seeds-indoors\" target=\"_blank\"><img src=\"she_knows.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike`s tip on starting seeds appears in the January 19th, 2012 article by Melissa Dunlap titled <a href=\"http://www.sheknows.com/home-and-gardening/articles/852959/how-to-grow-seeds-indoors\" target=\"_blank\"><i>Sprouting Seeds</i></a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";



			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">December 26, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2011/12/25/BUQJ1MGDEC.DTL\" target=\"_blank\"><img src=\"sf_chronicle.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">The <a href=\"http://seedsclub.averagepersongardening.com\">Seeds of the Month Club</a> is written about in the San Francisco Chronicle.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";

			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">December 23, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.businessweek.com/small-business/postal-service-cuts-worry-kitchentable-entrepreneurs-12232011.html\" target=\"_blank\"><img src=\"bloomberg_business_week.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is interviewed by Karen Klein for Bloomberg Businessweek in the article <a href=\"http://www.businessweek.com/small-business/postal-service-cuts-worry-kitchentable-entrepreneurs-12232011.html\" target=\"_blank\"><i>Postal Service Cuts Worry Kitchen-Table Entrepreneurs</i></a> about how postal rates will affect the <a href=\"http://seedsclub.averagepersongardening.com\">Seeds of the Month Club</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";

			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">December 6, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.urbangardensweb.com/2011/12/06/urban-gardens-2011-eco-awesome-holiday-gift-list/\" target=\"_blank\"><img src=\"urban_gardens.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">The <a href=\"http://seedsclub.averagepersongardening.com\">Seeds of the Month Club</a> was featured as item #8 in the Urban Garden <a href=\"http://www.urbangardensweb.com/2011/12/06/urban-gardens-2011-eco-awesome-holiday-gift-list/\" target=\"_blank\">2011 Eco-Awesome Holiday Gift List</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";

			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">December 1, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.prweb.com/releases/2011/12/prweb9004621.htm\" target=\"_blank\"><img src=\"prweb.gif\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.prweb.com/releases/2011/12/prweb9004621.htm\">New Jersey Businessman is Helping Vegetable Gardeners Save Money on Their Seeds</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";

			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">November 25, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://upandrunning.bplans.com/2011/11/25/small-business-saturday-spotlight-mike-the-gardener-enterprises-llc/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+typepad%2Fbplans+%28Up+and+Running%29\" target=\"_blank\"><img src=\"bplans.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike the Gardener Enterprises, LLC was a <a href=\"http://upandrunning.bplans.com/2011/11/25/small-business-saturday-spotlight-mike-the-gardener-enterprises-llc/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+typepad%2Fbplans+%28Up+and+Running%29\" target=\"_blank\">spotlight feature</a> for Small Business Saturday on bplans.com.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";


			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">November 21, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.inc.com/marla-tabaka/building-a-membership-site.html\" target=\"_blank\"><img src=\"inc_mag_logo.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike`s Seeds of the Month Club appears in Marla Tabaka`s article <i><a href=\"http://www.inc.com/marla-tabaka/building-a-membership-site.html\" target=\"_blank\">Should You Build a Membership Site?</a></i> on Inc.com</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">September 14, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://thriftyandgreen.com/content/saving-seeds-2\" target=\"_blank\"><img src=\"thrifty_and_green.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike gives 3 seed saving tips in Tara Wellington`s article on Thrifty and Green <a href=\"http://thriftyandgreen.com/content/saving-seeds-2\" target=\"_blank\"><i>Saving Seeds</i></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">September 12, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.dailyfinance.com/2011/09/12/are-you-up-for-a-second-job-the-rise-of-moonlighting-and-moonp/\" target=\"_blank\"><img src=\"daily_finance.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike appears in Sheryl Nance-Nash`s article <a href=\"http://www.dailyfinance.com/2011/09/12/are-you-up-for-a-second-job-the-rise-of-moonlighting-and-moonp/\" target=\"_blank\"><i>Are Your Up for a Second Job? The Rise of Moonlighting and `Moonpreneurs`</i></a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">September 2, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://smallbusiness.foxbusiness.com/entrepreneurs/2011/09/02/how-were-using-social-media-to-expand-brand/\" target=\"_blank\"><img src=\"logo_foxNews.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike the Gardener Enterprises, LLC is featured in the Fox News article <a href=\"http://smallbusiness.foxbusiness.com/entrepreneurs/2011/09/02/how-were-using-social-media-to-expand-brand/\" target=\"_blank\"><i>How We`re Using Social Media to Expand the Brand</i></a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">August 29, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://smallbusiness.foxbusiness.com/entrepreneurs/2011/08/29/tweet-business-day-mike-gardener-enterprises/\" target=\"_blank\"><img src=\"fox_small_business.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike the Gardener Enterprises, LLC and the <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a> are featured on Fox Small Business in the article <a href=\"http://smallbusiness.foxbusiness.com/entrepreneurs/2011/08/29/tweet-business-day-mike-gardener-enterprises/\" target=\"_blank\"><i>Tweet Business of the Day: Mike the Gardener Enterprises</i></a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">August 22, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.miamiherald.com/2011/08/22/2369713/composting-made-easy.html\" target=\"_blank\"><img src=\"miami_herald_logo.jpg\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike`s tips on <a href=\"http://www.miamiherald.com/2011/08/22/2369713/composting-made-easy.html\" target=\"_blank\">composting made easy</a> appear in the August 22nd, 2011 issue of the Miami Herald.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">July 20, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.issuu.com/de-stress4lifemagazine/docs/de-stress4life-summer2011\" target=\"_blank\"><img src=\"isuu.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike appears on page 25 in the article <a href=\"http://www.issuu.com/de-stress4lifemagazine/docs/de-stress4life-summer2011\" target=\"_blank\">Tips for first Time Gardeners</a> and on page 39 in the interview section of <a href=\"http://www.issuu.com/de-stress4lifemagazine/docs/de-stress4life-summer2011\" target=\"_blank\">De-Stress 4 Life Magazine</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">July 19, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.openforum.com/articles/fundamentals-of-online-advertising\" target=\"_blank\"><img src=\"american_express.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is quoted in the <a href=\"http://www.openforum.com/connectodex/wise-bread?username=thursday-bram\" target=\"_blank\">Thursday Bram`s</a> article on <a href=\"http://www.openforum.com/articles/fundamentals-of-online-advertising\" target=\"_blank\">American Express Open Forum</a> titled <a href=\"http://www.openforum.com/articles/fundamentals-of-online-advertising\" target=\"_blank\"><i>Fundamentals of Online Advertising</i></a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">July 5, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://theinsider.retailmenot.com/learn/healthy-garden.html\" target=\"_blank\"><img src=\"retailmenot.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is quoted in <a href=\"http://theinsider.retailmenot.com/learn/healthy-garden.html\" target=\"_blank\">Trae Bodge`s</a> article <a href=\"http://theinsider.retailmenot.com/learn/healthy-garden.html\" target=\"_blank\"><i>The Healthy Garden: Composting Made Easy and Clean and not Smelly</i></a> on <a href=\"http://theinsider.retailmenot.com/learn/healthy-garden.html\" target=\"_blank\">RetailMeNot.com</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">June 6, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://brandmakernews.com/top-stories/6687/groupon-effect-small-business.html?utm_source=BrandMakerNews+Haro+Sources&utm_campaign=0dbc853a1d-Groupon_Effect_on_Small_Business6_6_2011&utm_medium=email\" target=\"_blank\"><img src=\"brandmaker_news.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is quoted in the Brandmaker News article, <a href=\"http://brandmakernews.com/top-stories/6687/groupon-effect-small-business.html?utm_source=BrandMakerNews+Haro+Sources&utm_campaign=0dbc853a1d-Groupon_Effect_on_Small_Business6_6_2011&utm_medium=email\" target=\"_blank\">`The Groupon Effect on Small Business`</a> wirtten by Tia Jackson.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">May 27, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://youtu.be/9XwxPWz3EbM\" target=\"_blank\"><img src=\"abc_logo.jpg\" border=\"0\" height=\"55px\" width=\"55px\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://youtu.be/9XwxPWz3EbM\" target=\"_blank\">Amy Buckman</a> of Channel 6 action news in Philadelphia, PA <a href=\"http://youtu.be/9XwxPWz3EbM\" target=\"_blank\">interviews</a> Mike about the <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a> and how Vegetable Gardening saves people money.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">May 25, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.ourmidland.com/story_prep/article_729c1081-413e-526f-8273-1875409f31c4.html\" target=\"_blank\"><img src=\"midland_daily_news.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Beaverton, MI woman wins Mike the Gardener`s Seeds of the Month Club Facebook contest and is written about in her home town newspaper the <a href=\"http://www.ourmidland.com/story_prep/article_729c1081-413e-526f-8273-1875409f31c4.html\" target=\"_blank\">Midland Daily News</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">May 19, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.theledger.com/article/20110519/COLUMNISTS/105195032?Title=Vegetable-Gardening-Whiz-Rewarded\" target=\"_blank\"><img src=\"theledger.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Winner of Mike the Gardener`s weekly Seeds Club giveaway was written about in their home town paper, <a href=\"http://www.theledger.com/article/20110519/COLUMNISTS/105195032?Title=Vegetable-Gardening-Whiz-Rewarded\" target=\"_blank\">the Ledger</a>, in the article, <a href=\"http://www.theledger.com/article/20110519/COLUMNISTS/105195032?Title=Vegetable-Gardening-Whiz-Rewarded\" target=\"_blank\"><i>Vegetable-Gardening Whiz Rewarded</i></a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">April 22, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.sellingbooks.com/michael-mike-the-gardener-podlesny-vegetable-gardening-for-the-average-person\" target=\"_blank\"><img src=\"selling_books.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is interviewed for the website <a href=\"http://www.sellingbooks.com/michael-mike-the-gardener-podlesny-vegetable-gardening-for-the-average-person\" target=\"_blanl\">Sellingbooks.com</a> to talk about his book <a href=\"http://www.amazon.com/gp/product/0557074266/ref=as_li_ss_tl?ie=UTF8&tag=sb04e-20&linkCode=as2&camp=217145&creative=399349&creativeASIN=0557074266\" target=\"_blank\"<i>Vegetable Gardening for the Average Person</i></a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">April 20, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.youtube.com/v/mj41jR3N-Ag?version=3\" target=\"_blank\"><img src=\"nbc_logo.jpg\" border=\"0\" alt=\"\" height=\"75px\" width=\"75px\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike appears on <a href=\"http://www.youtube.com/v/mj41jR3N-Ag?version=3\" target=\"_blank\">NBC Philadelphia</a> to talk about how being a <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a> member can help save consumers some money.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">April 19, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://businessinfoguide.com/entrepreneur-interview-michael-podlesny-mike-the-gardener-enterprises/\" target=\"_blank\"><img src=\"business_info_guide.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Sue Canfield of Business Info Guide interview`s Mike about his entrepreneurial endeavors, <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">the Seeds of the Month Club</a> and more in her article titled <a href=\"http://businessinfoguide.com/entrepreneur-interview-michael-podlesny-mike-the-gardener-enterprises/\" target=\"_blank\">Entrepreneur Interview: Michael Podlesny, Mike the Gardener Enterprises</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">April 14, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.mint.com/blog/saving/gardening-tips-04132011/\" target=\"_blank\"><img src=\"mint_com.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is quoted with a money saving gardening tip on <a href=\"http://www.mint.com/blog/saving/gardening-tips-04132011/\" target=\"_blank\">Mint.com</a> in the article <a href=\"http://www.mint.com/blog/saving/gardening-tips-04132011/\" target=\"_blank\">10 Tips on Growing Your Garden Without Growing Your Expenses</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">April 11, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.phillyburbs.com/blogs/news_columnists/kate_fratti/a-growing-obsession/article_8cb96e50-6374-11e0-ae56-001a4bcf6878.html\" target=\"_blank\"><img src=\"phillyburbs.png\" border=\"0\" alt=\"\" width=\"89px\" height=\"13px\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike`s <a href=\"http://www.amazon.com/Vegetable-Gardening-Average-Person-vegetable/dp/0557074266/ref=sr_1_1?ie=UTF8&s=books&qid=1248269180&sr=1-1\">book, <i>Vegetable Gardening for the Average Person</i>,</a> and the <a href=\"http://seedsclub.averagepersongardening.com\">Seeds of the Month Club</a> are written about in Kate Fratti`s article, <a href=\"http://www.phillyburbs.com/blogs/news_columnists/kate_fratti/a-growing-obsession/article_8cb96e50-6374-11e0-ae56-001a4bcf6878.html\" target=\"_blank\">A Growing Obsession</a> on PhillyBurbs.com.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">March 22, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://nycgardening.blogspot.com/2011/03/you-dont-need-lot-of-money-to-garden.html\" target=\"_blank\"><img src=\"garden_blog_nyc.png\" border=\"0\" alt=\"\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike`s <a href=\"http://seedsclub.averagepersongardening.com\">Seeds of the Month Club</a> and <a href=\"http://birthdaylist.averagepersongardening.com\">Birthday Club</a> are featured as item #2 on the blog <a href=\"http://nycgardening.blogspot.com/2011/03/you-dont-need-lot-of-money-to-garden.html\" target=\"_blank\">\"Gardening in the Buroughs of NYC\"</a> in the article titled <a href=\"http://nycgardening.blogspot.com/2011/03/you-dont-need-lot-of-money-to-garden.html\" target=\"_blank\">\"You Don`t Need a Lot of Money to Garden\"</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">March 21, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.entrepreneur.com\" target=\"_blank\"><img src=\"entrepreneur.jpg\" border=\"0\" alt=\"Entrepreneur Magazine\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is quoted on page 14 in <a href=\"http://www.entrepreneur.com\" target=\"_blank\">Entrepreneur Magazine</a> under the Feedback section title `Is it Time to Quit?`</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">March 14, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"dr_shannon_reece.png\" border=\"0\" alt=\"Dr Shannon Reece\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is featured as tip #19 in Dr. Shannon Reece`s article <a href=\"http://blog.drshannonreece.com/2011/03/14/27-small-business-secret-weapons/\" target=\"_blank\">27+ Small Business Secret Weapons</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">February 23, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"bh-logo-bottom.jpg\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is quoted in <a href=\"http://www.brighthub.com/members/dcosmato.aspx\" target=\"_blank\">Donna Cosmato`s</a> article <a href=\"http://www.brighthub.com/diy/lawn-garden/articles/107748.aspx\" target=\"_blank\">Expert Tips for Growing Watermelons</a> on Bright Hub</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">February 22, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"web_pro_nes.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is quoted in <a href=\"http://www.webpronews.com/user/chris-crum\" target=\"_blank\">Chris Crum`s</a> article <a href=\"http://www.webpronews.com/topnews/2011/02/22/can-groupon-own-the-deals-space\" target=\"_blank\">Can Groupon Own The Deals Space?</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">February 17, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"tpe.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike the Gardener Enterprises is featured as tip #1 in Mike Michalowicz`s article <a href=\"http://www.toiletpaperentrepreneur.com/branding/ways-to-give-to-get-back-in-business\" target=\"_blank\">Ways To Give To Get Back In Business</a> on the popular website <i>The Toilet Paper Entrepreneur</i></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">February 2, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.averagepersongardening.com/press_releases/press_release_feb_2_2011.pdf\" target=\"_blank\">PRESS RELEASE: Grow More and Spend Less with Group Buying Your Vegetable Seeds</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">January 21, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.buywithme.com\" target=\"_blank\"><img src=\"buywithmelogo.png\" border=\"0\" alt=\"Buy With Me\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike the Gardener Enterprises <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a> is featured in Dallas, TX and San Francisco, CA deal of the day website, <a href=\"http://www.buywithme.com\" target=\"_blank\">BuyWithMe.com</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">January 19, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://money.msn.com/saving-money/what-to-buy-now-for-summer-savings-freedman.aspx\" target=\"_blank\"><img src=\"104x25_Misc_MSNMoneyLogo.gif\" border=\"0\" alt=\"MSN Money\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike the Gardener Enterprises Seeds of the Month Club is featured in <a href=\"http://money.msn.com/saving-money/what-to-buy-now-for-summer-savings-freedman.aspx\" target=\"_blank\">MSN Money</a> editor, Donna Freedman`s article, <a href=\"http://money.msn.com/saving-money/what-to-buy-now-for-summer-savings-freedman.aspx\" target=\"_blank\">What to Buy Now for Summer Savings</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">January 13, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.shreveporttimes.com/article/20110113/LIVING0401/101130306/Gardener-reaps-seeds-in-online-quiz\" target=\"_blank\"><img src=\"shrevesport_times.png\" border=\"0\" alt=\"Shrevesport Times\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Shanika Hewitt, the winner of the <a href=\"http://www.facebook.com/veggiegardening\" target=\"_blank\">Facebook Vegetable Gardening</a> quiz contest, is featured in her local paper, <a href=\"http://www.shreveporttimes.com/article/20110113/LIVING0401/101130306/Gardener-reaps-seeds-in-online-quiz\" target=\"_blank\">The Shrevesport Times</a>, in the article, <a href=\"http://www.shreveporttimes.com/article/20110113/LIVING0401/101130306/Gardener-reaps-seeds-in-online-quiz\" target=\"_blank\">Gardener reaps seeds in online quiz</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">January 6, 2011</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<a href=\"http://www.associatedcontent.com/article/6185206/facebooks_vegetable_gardening_page.html?cat=15\" target=\"_blank\"><img src=\"ac_on_yahoo.png\" border=\"0\" alt=\"Associated Content Yahoo! Network\"></a>";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike the Gardener Enterprises <a href=\"http://www.facebook.com/veggiegardening\" target=\"_blank\">Vegetable Gardening Facebook page</a> was given a rave review on Associated Content in Deb Martin-Webster`s article, <a href=\"http://www.associatedcontent.com/article/6185206/facebooks_vegetable_gardening_page.html?cat=15\" target=\"_blank\">Facebook`s Vegetable Gardening Page - a Green Thumbs Up</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
/*
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">December 27, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"dr_shannon_reece.png\" border=\"0\" alt=\"Dr Shannon Reece\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is featured in Dr Shannon Reece`s article <a href=\"http://drshannonreece.wordpress.com/2010/12/27/business-christmas-wish-list//\" target=\"_blank\">What`s on your business Christmas wish list?</a> and <a href=\"http://drshannonreece.wordpress.com/2011/01/03/obstacles-are-no-match-for-entrepreneurs/\" target=\"_blank\">Obstacles are No Match for Entrepreneurs</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">December 20, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"dr_shannon_reece.png\" border=\"0\" alt=\"Dr Shannon Reece\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is featured in Dr Shannon Reece`s article <a href=\"http://drshannonreece.wordpress.com/2010/12/20/plan-your-work/\" target=\"_blank\">Business strategies and tactics</a>, for business goals and planning.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">December 18, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"KCopsey.jpg\" border=\"0\" alt=\"America`s Home Grown Veggies with host Kate Copsey\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike appears on the weekly radio show <a href=\"http://mikethegardener.podbean.com/mf/web/778vf4/VeggieShowDec182010.mp3/\" target=\"_blank\">America`s Home Grown Veggies</a> with host <a href=\"http://www.radiosandysprings.com/showpages/veggieHour.php\" target=\"_blank\">Kate Copsey</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">December 9, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"atlanta_examiner.png\" border=\"0\" alt=\"Atlanta Examiner\" width=\"100px\" height=\"18px\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">The <a href=\"http://seedsclub.averagepersongardening.com/\" target=\"_blank\">Seeds of the Month Club</a> was mentioned as a great under $25 gift in <a href=\"http://www.examiner.com/working-moms-in-atlanta/more-gifts-odeas-for-mom-all-under-25\" target=\"_blank\">Roni Singleton Jeter's article</a> for the Atlanta Examiner.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">November 29, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"gj.png\" border=\"0\" alt=\"Gardening Jones\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike`s book is reviewed on the <a href=\"http://gardeningjones.com/blog/?p=3150\" target=\"_blank\">Gardening Jones blog</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">November 23, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"ufo.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\">Mike is featured on page 42 of the January/February issue of <a href=\"http://www.urbanfarmonline.com/\" target=\"_blank\">Urban Farm Magazine</a> in the article <b><i>The Great Garden Scheme</i></b></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">September 14, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"daves_garden.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://davesgarden.com/products/gwd/c/7622/\" target=\"_blank\">Dave`s Garden Review</a> - The Seeds of the Month club receives rave review from customer.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">September 13, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"mercer.jpg\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.mccc.edu/~humphrew/whatsnew/alummikepodlesny.htm\" target=\"_blank\">MCCC Plants Seeds for Everyman Gardener Mike Podlesny</a> - Mike is a featured story of alumni successes for the college he attended.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">August 25, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"best_gift_of_the_month_club.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.bestofthemonthclubs.com/monthly-flower-plant-clubs-growing-popularity/\" target=\"_blank\">Best Gift of the Month Club</a> - Mike the Gardener Enterprises Seeds of the Month Club was featured on this blog as one of the top 10 clubs related to gardening.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">August 9, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"groupon_press_page.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.averagepersongardening.com/philly_featured_groupon.png\" target=\"_blank\">Groupon.com</a> - Mike the Gardener`s Seeds of the Month Club was featured as a side deal for the Philadelphia Groupon area.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">August 3, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"njlogo.jpg\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.northjersey.com/community/99709264__Summer_isn_t_over.html\" target=\"_blank\">NorthJersey.com</a> - Mike`s step by step guide to getting kids involved in vegetable gardening is featured in Lucy Probert`s <i>`Summer isn`t Over`</i> article.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">July 16, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"lodestone_dynamics.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.lodestoneblog.com/2010/07/91-fundamental-habits-of-highly-motivated-small-business-owners/\" target=\"_blank\">Lodeston Dynamics: The Navigator, Finding Success in Work and Life</a> - Mike is featured as tip #21 for 91 Fundamental Habits of Highly Motivated Small Business Owners.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">July 15, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.averagepersongardening.com/press_releases/press_release_fall_gardening_a.pdf\" target=\"_blank\">PRESS RELEASE: Start Planning that Fall Vegetable Garden Now</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">July 2, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"wallet_pop.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.walletpop.com/blog/2010/07/02/sprucing-up-a-yard-for-100-or-less/\" target=\"_blank\">Wallet Pop Blog</a> - Mike is quoted with a price saving tip on gardening.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">June 19, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"updatedphm.jpg\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://thoughtsofprincessmar.blogspot.com/2010/06/average-person-gardening.html\" target=\"_blank\">Pink Haired Momma Blog</a> - Mike the Gardener`s <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a> is written about and featured on this very popular blog.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">June 18, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"mygloss.jpg\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://mygloss.com/yum/2010/06/17/last-minute-gifts-for-food-loving-dads/comment-page-1/#comment-425\" target=\"_blank\">Dads With a Green Thumb</a> - Mike the Gardener`s <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a> is featured as a great gift for Father`s Day on <a href=\"http://www.MyGloss.com\" target=\"_blank\">MyGloss.com</a>.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">June 16, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"logo-gift-blog.jpg\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.1happycorner.com/last-minute-deals-on-fathers-day-gifts-month-clubs\" target=\"_blank\">Last Minute Deals on Father`s Day Gifts</a> - Mike the Gardener`s <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a> is featured as a great gift for Father`s Day on <a href=\"http://www.1happycorner.com\" target=\"_blank\">1HappyCorner.com</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">June 11, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"newspapericon.jpg\" border=\"0\" width=\"32px\" height=\"32px\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://blogs.roanoke.com/rtblogs/botetourtview/2010/06/11/facebook-gardening-award-won-by-troutville-resident\" target=\"_blank\">Roanoke Times - The Botetourt View</a> - Winner of Mike the Gardener`s international vegetable gardening contest on Facebook is featured in her hometown paper.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">June 10, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"tpe.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.toiletpaperentrepreneur.com/blog/how-to-get-reliable-feedback-from-customers\" target=\"_blank\">Toilet Paper Entrepreneur</a> - Mike the Gardener was featured as Tip #6 on this popular business blog related to customer satisfaction.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">June 1, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"web_site_icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://sweeps4bloggers.com/?p=5096\" target=\"_blank\">Sweeps 4 Bloggers</a> - Mike the Gardener`s <a href=\"http://seedsclub.averagepersongardening.com\" target=\"_blank\">Seeds of the Month Club</a> is a featured prize giveaway to their visitors.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">May 11, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"pdf-icon.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.averagepersongardening.com/press_releases/join_the_club.pdf\" target=\"_blank\">PRESS RELEASE: Not Sure What to Grow? Join the Club</a></span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr><td><br></td></tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left colspan=2>";
			txt+="									<span class=\"websitefont\">May 1, 2010</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=middle align=left>";
			txt+="									<img src=\"ig.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=middle align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.gifttoindia.net/gift/occasional-gifts/mothers-day-gifts/page/5/\" target=\"_blank\">India Gifts</a> - Mike the Gardener`s Seeds of the Month Club was featured as the #2 idea for last minute gifts for moms on Mother`s Day and dads on Father`s Day.</span>";
			txt+="								</td>";
			txt+="							</tr>";
*/
			txt+="						</table></div>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left colspan=2>";
			txt+="						<table border=0 cellspacing=1 cellpadding=1 class=\"maintableborder\" width=100%>";
			txt+="							<tr><td valign=top align=center colspan=20><span class=\"websitefont\"><b>LEGEND</b></span></td></tr>";
			txt+="							<tr><td valign=top align=left><img src=\"radio_icon.jpg\" border=\"0\"></td><td valign=top align=left><span class=\"websitefont\">Radio</span></td><td valign=top align=left><img src=\"video_icon.png\" border=\"0\"></td><td valign=top align=left><span class=\"websitefont\">Video</span></td><td valign=top align=left><img src=\"gif_icon.png\" border=\"0\"></td><td valign=top align=left><span class=\"websitefont\">Image (i.e. gif,jpg,png,bmp)</span></td><td valign=top align=left><img src=\"pdf-icon.png\" border=\"0\"></td><td valign=top align=left><span class=\"websitefont\">PDF Document</span></td></tr>";
			txt+="						</table>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="			</table>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="</table>";
			break;		
		case 10:	//games and fun
			txt+="<table width=100% class=\"maintableborder\">";
			txt+="	<tr>";
			txt+="		<td valign=top align=left class=\"tablerow_header_graphic\">";
			txt+="			<table width=100% cellspacing=0 cellpadding=0 border=0>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<span class=\"websiteheadersectionfont\"><b>Games, Puzzles and Questions</b></span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="					<td valign=top align=left colspan=10>";
			txt+="						<span class=\"websiteheaderfont\"><b>Here you will find some fun stuff related to vegetable gardening.  All are free to use and play.  Enjoy!</b></span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left><div id=\"press_scroll\" class=\"div_tag_scroll\">";
			txt+="						<table cellspacing=0 cellpadding=0 border=0>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/organic_fertilizer/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://organicfertilizer.averagepersongardening.com\" target=\"_blank\">QUIZ: Organic Fertilizer</a> - Can you answer these 10 questions about organic fertilizer?  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/okra/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://okra.averagepersongardening.com\" target=\"_blank\">QUIZ: Okra</a> - Can you answer these 10 questions about okra?  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/basil/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://basil.averagepersongardening.com\" target=\"_blank\">QUIZ: Basil</a> - Can you answer these 10 questions about basil?  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/compost/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://compost.averagepersongardening.com\" target=\"_blank\">QUIZ: Compost</a> - Can you answer these 10 questions about compost.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/broccoli/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://broccoli.averagepersongardening.com\" target=\"_blank\">QUIZ: Broccoli</a> - See if you can answer these 10 questions about broccoli.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/spinach/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://spinach.averagepersongardening.com\" target=\"_blank\">QUIZ: Spinach</a> - See if you can answer these 10 questions about spinach.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/watermelon/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://watermelon.averagepersongardening.com\" target=\"_blank\">QUIZ: Watermelon</a> - See if you can answer these 10 questions about watermelon.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/cornquiz/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://cornquiz.averagepersongardening.com\" target=\"_blank\">QUIZ: Corn</a> - See if you can answer these 10 questions about corn.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/peasquiz/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://peasquiz.averagepersongardening.com\" target=\"_blank\">QUIZ: Peas</a> - See if you can answer these 10 questions about peas.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/lettucequiz/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://lettucequiz.averagepersongardening.com\" target=\"_blank\">QUIZ: Lettuce</a> - See if you can answer these 10 questions about lettuce.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/onionsquiz/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://onionsquiz.averagepersongardening.com\" target=\"_blank\">QUIZ: Onions</a> - See if you can answer these 10 questions about onions.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/beansquiz/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://beanquiz.averagepersongardening.com\" target=\"_blank\">QUIZ: Beans</a> - See if you can answer these 10 questions about beans.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/carrotquiz/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.averagepersongardening.com/carrotquiz\" target=\"_blank\">QUIZ: Carrots</a> - See if you can answer these 10 questions about carrots.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/squashquiz/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.averagepersongardening.com/squashquiz\" target=\"_blank\">QUIZ: `I Just Got Squashed`</a> - See if you can answer these 10 questions about squash.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/pepperquiz/images.jpg\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.averagepersongardening.com/pepperquiz\" target=\"_blank\">QUIZ: `The Scorching Pepper`</a> - See if you can answer these 10 questions about this popular home vegetable garden item, the pepper.  Share with your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"http://www.averagepersongardening.com/picklequiz/pickles.gif\" border=\"0\" width=\"75px\" height=\"75px\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.averagepersongardening.com/picklequiz\" target=\"_blank\">QUIZ: `Caught in a Pickle`</a> - So you think you know your cucumbers?  We will give you 10 facts about cucumbers and you decide whether they are true or false.  Play against your friends on Facebook!</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<br>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="						</table></div>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="			</table>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="</table>";
			break;
		case 11:	//for the kids
			txt+="<table width=100% class=\"maintableborder\">";
			txt+="	<tr>";
			txt+="		<td valign=top align=left class=\"tablerow_header_graphic\">";
			txt+="			<table width=100% cellspacing=0 cellpadding=0 border=0>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<img src=\"for_the_kids1.png\" align=left border=0>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="					<td valign=top align=left colspan=10>";
			txt+="						<span class=\"websiteaffiliategetstartedfont\"><b>Here you will find all kinds of neat ideas, puzzles and fun for the kids!</b></span>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<br>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="				<tr>";
			txt+="					<td valign=top align=left>";
			txt+="						<table cellspacing=0 cellpadding=0 border=0>";
			txt+="							<tr>";
			txt+="								<td valign=top align=left>";
			txt+="									<img src=\"earth_friendly.png\" border=\"0\">";
			txt+="								</td>";
			txt+="								<td valign=top align=left>";
			txt+="									<span class=\"websitefont\"><a href=\"http://www.averagepersongardening.com/earth_day_color_book.pdf\" target=\"_blank\">Earth Day Coloring book for Kids!</a> - Compliments of the EPA of the USA you can download this free 12 page booklet that teaches kids all about how to recycle through the art and imagination of coloring.</span>";
			txt+="								</td>";
			txt+="							</tr>";
			txt+="						</table>";
			txt+="					</td>";
			txt+="				</tr>";
			txt+="			</table>";
			txt+="		</td>";
			txt+="	</tr>";
			txt+="</table>";
			break;

	}
	document.getElementById("content").innerHTML = txt;

	switch (id) {
		case 3:	
			getproductslist();
			break;
		case 4:
			loadshoppingcart();
			break;
		case 5:
			loadmobilecarriers();
			break;
	}
}

var xmlhttp;


function GetXmlHttpObject() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function addcartitemstodatabase() {
	//first we check to make sure the required fields on the checkout screen are filled in, because we will need to add
	//them later to the database
	if (document.frmshipping.customer_name.value.length>0) {
		if (document.frmshipping.customer_address_line_1.value.length>0) {
			if (document.frmshipping.customer_city.value.length>0) {
				if (document.frmshipping.customer_state.value.length>0) {
					if (document.frmshipping.customer_zip_code.value.length>0) {
						if (document.frmshipping.customer_email.value.length>0) {
							// this function gets executed when the user clicks the checkout button on the cart form
							// we transfer the items to the database, clear the shopping cart then send the user to paypal
							document.body.style.cursor = "wait";
							xmlhttp=GetXmlHttpObject();
							if (xmlhttp==null)
							{
								alert ("Browser does not support HTTP Request");
								return;
							}
							var url="addshoppingcarttodatabase.php";
							url=url+"?sid="+Math.random();
							url=url+"&customer_name="+document.frmshipping.customer_name.value;
							url=url+"&customer_address_line_1="+document.frmshipping.customer_address_line_1.value;
							url=url+"&customer_address_line_2="+document.frmshipping.customer_address_line_2.value;
							url=url+"&customer_city="+document.frmshipping.customer_city.value;
							url=url+"&customer_state="+document.frmshipping.customer_state.value;
							url=url+"&customer_zip_code="+document.frmshipping.customer_zip_code.value;
							url=url+"&customer_email="+document.frmshipping.customer_email.value;
							url=url+"&customer_phone="+document.frmshipping.customer_phone.value;
							url=url+"&newsletter="+document.frmshipping.newsletter.checked;

							xmlhttp.onreadystatechange=addcartitemstodatabasestateChanged;
							xmlhttp.open("GET",url,true);
							xmlhttp.send(null);
						}
						else {
							alert("Please enter in your email address!");
						}
					}
					else {
						alert("Please enter in your zip code!");
					}
				}
				else {
					alert("Please enter in your state!");
				}

			}
			else {
				alert("Please enter in your city!");
			}
		}
		else {
			alert("Please enter in your address on line 1!");
		}
	}
	else {
		alert("Please enter in your full name!");
	}
}
function addcartitemstodatabasestateChanged() {
	if (xmlhttp.readyState==4) {
		document.body.style.cursor = "default";
		document.frmpaypal.submit();
	}
}

function showproduct(str) {
	document.body.style.cursor = "wait";
	xmlhttp=GetXmlHttpObject();
	if (xmlhttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="loadproducts.php";
	url=url+"?q="+str;
	url=url+"&sid="+Math.random();
	xmlhttp.onreadystatechange=stateChanged;
	xmlhttp.open("GET",url,true);
	xmlhttp.send(null);
}

function stateChanged() {
	if (xmlhttp.readyState==4) {
		document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
		document.body.style.cursor = "default";
	}
}

function addtocookie(str,qty) {
	document.body.style.cursor = "wait";

	xmlhttp=GetXmlHttpObject();
	if (xmlhttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="addtocookie.php";
	url=url+"?q="+str;
	url=url+"&sid="+Math.random();
	url=url+"&qty="+qty;
	xmlhttp.onreadystatechange=cookiestateChanged;
	xmlhttp.open("GET",url,true);
	xmlhttp.send(null);
}
function cookiestateChanged() {
	if (xmlhttp.readyState==4) {
		document.getElementById("addtocookie").innerHTML=xmlhttp.responseText;
		document.body.style.cursor = "default";
	}
}

function loadshoppingcart() {
	document.body.style.cursor = "wait";
	xmlhttp=GetXmlHttpObject();
	if (xmlhttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="displayshoppingcart.php";
	url=url+"?sid="+Math.random();
	xmlhttp.onreadystatechange=shoppingcartinformation;
	xmlhttp.open("GET",url,true);
	xmlhttp.send(null);
}

function shoppingcartinformation() {
	if (xmlhttp.readyState==4) {
		document.getElementById("shoppingcartinformation").innerHTML=xmlhttp.responseText;
		document.body.style.cursor = "default";
	}
}

function loadproductdetail(id) {
	SetValues(0,0);

	document.body.style.cursor = "wait";
	xmlhttp=GetXmlHttpObject();
	if (xmlhttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="loadproductdetails.php";
	url=url+"?q="+id;
	url=url+"&sid="+Math.random();
	xmlhttp.onreadystatechange=moreinformation;
	xmlhttp.open("GET",url,true);
	xmlhttp.send(null);
}

function moreinformation() {
	if (xmlhttp.readyState==4) {
		document.getElementById("detailedinformationforproduct").innerHTML=xmlhttp.responseText;
		document.body.style.cursor = "default";
	}
}

// Detect if the browser is IE or not.
// If it is not IE, we assume that the browser is NS.
var IE = document.all?true:false

// If NS -- that is, !IE -- then set up for mouse capture
if (!IE) document.captureEvents(Event.MOUSEMOVE)

// Set-up to use getMouseXY function onMouseMove
document.onmousemove = getMouseXY;

// Temporary variables to hold mouse x-y pos.s
var tempX = 0
var tempY = 0

// Main function to retrieve mouse x-y pos.s

function getMouseXY(e) {
	
  if (IE) { // grab the x-y pos.s if browser is IE
    tempX = event.clientX + document.body.scrollLeft
    tempY = event.clientY + document.body.scrollTop
  } else {  // grab the x-y pos.s if browser is NS
    tempX = e.pageX
    tempY = e.pageY
  }  
  // catch possible negative values in NS4
  if (tempX < 0){tempX = 0}
  if (tempY < 0){tempY = 0}  
  // show the position values in the form named Show
  // in the text fields named MouseX and MouseY
   document.getElementById("MouseX").value = tempX
   document.getElementById("MouseY").value = tempY
  return true
}
function SetValues(x,y) {
	document.getElementById("detailedinformationforproduct").style.position = 'absolute';
	document.getElementById("detailedinformationforproduct").style.left=(document.getElementById("MouseX").value-x) + "px";
	document.getElementById("detailedinformationforproduct").style.top=(document.getElementById("MouseY").value-y) + "px";
}
function closeproductwindow() {
	document.getElementById("detailedinformationforproduct").innerHTML='';
}

function removecartitem(cartitem) {
	if (confirm("Do you want to delete the selected item?")==true) {
		document.body.style.cursor = "wait";
		xmlhttp=GetXmlHttpObject();
		if (xmlhttp==null)
		{
			alert ("Browser does not support HTTP Request");
			return;
		}
		var url="removeitemfromshoppingcart.php";
		url=url+"?q="+cartitem;
		url=url+"&sid="+Math.random();
		xmlhttp.onreadystatechange=shoppingcartinformation;
		xmlhttp.open("GET",url,true);
		xmlhttp.send(null);
	}
}

var xmlhttp_newsletter;
function updatenumbernewslettersubscribers() {
	if (xmlhttp_newsletter.readyState==4) {
		document.getElementById("numbernewslettersubscribers").innerHTML=xmlhttp_newsletter.responseText;
		document.body.style.cursor = "default";
	}
}
function loadnumbernewslettersubscribers() {
	document.body.style.cursor = "wait";
	xmlhttp_newsletter=GetXmlHttpObject();
	if (xmlhttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="loadnumbernewslettersubscribers.php";
	url=url+"?sid="+Math.random();
	xmlhttp_newsletter.onreadystatechange=updatenumbernewslettersubscribers;
	xmlhttp_newsletter.open("GET",url,true);
	xmlhttp_newsletter.send(null);
}

// ************************************** ARTICLES ***************************************************************
var xmlhttp_articles;

function GetXmlHttpObjectarticles() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function updatearticles() {
	if (xmlhttp_articles.readyState==4) {
		document.getElementById("content").innerHTML=xmlhttp_articles.responseText;
		document.body.style.cursor = "default";
	}
}
function update_articles() {
	if (xmlhttp_articles.readyState==4) {
		document.getElementById("content").innerHTML=xmlhttp_articles.responseText;
		document.body.style.cursor = "default";
	}
}

function loadarticles() {
	document.body.style.cursor = "wait";
	xmlhttp_articles=GetXmlHttpObjectarticles();
	if (xmlhttp_articles==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="loadarticletitles.php";
	url=url+"?sid="+Math.random();
	xmlhttp_articles.onreadystatechange=updatearticles;
	xmlhttp_articles.open("GET",url,true);
	xmlhttp_articles.send(null);
}

function load_articles(id) {
	document.body.style.cursor = "wait";
	xmlhttp_articles=GetXmlHttpObjectarticles();
	if (xmlhttp_articles==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="load_articles.php";
	url=url+"?q="+id;
	url=url+"&sid="+Math.random();
	xmlhttp_articles.onreadystatechange=update_articles;
	xmlhttp_articles.open("GET",url,true);
	xmlhttp_articles.send(null);
}

// ****************************************************************************************************************
var xmlhttp_autoemails;
function GetXmlHttpObjectautoemails() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}
function updateautoemails() {
	if (xmlhttp_autoemails.readyState==4) {
		document.body.style.cursor = "default";
	}
}
function loadautoemails() {
	document.body.style.cursor = "wait";
	xmlhttp_autoemails=GetXmlHttpObjectautoemails();
	if (xmlhttp_autoemails==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="send_auto_newsletters.php";
	url=url+"?sid="+Math.random();
	xmlhttp_autoemails.onreadystatechange=updateautoemails;
	xmlhttp_autoemails.open("GET",url,true);
	xmlhttp_autoemails.send(null);
}
// ****************************************************************************************************************

//*****************************************************************************************************************
var xmlhttp_testimonials;
function GetXmlHttpObjecttestimonials() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function updatetestimonials() {
	if (xmlhttp_testimonials.readyState==4) {
		document.getElementById("div_testimonials").innerHTML=xmlhttp_testimonials.responseText;
		document.body.style.cursor = "default";
	}
}
function loadtestimonials() {
	document.body.style.cursor = "wait";
	xmlhttp_testimonials=GetXmlHttpObjecttestimonials();
	if (xmlhttp_testimonials==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="load_testimonials.php";
	url=url+"?limit=1";
	xmlhttp_testimonials.onreadystatechange=updatetestimonials;
	xmlhttp_testimonials.open("GET",url,true);
	xmlhttp_testimonials.send(null);
}
//*****************************************************************************************************************
var xmlhttp_twitter;

function GetXmlHttpObjecttwitter() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function updatetwitterfollowers() {
	if (xmlhttp_twitter.readyState==4) {
		document.getElementById("numberoftwitterfollowers").innerHTML=xmlhttp_twitter.responseText;
		document.body.style.cursor = "default";
	}
}
function loadtwitterfollowers() {
	document.body.style.cursor = "wait";
	xmlhttp_twitter=GetXmlHttpObjecttwitter();
	if (xmlhttp_twitter==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="loadnumberoftwitterfollowers.php";
	url=url+"?sid="+Math.random();
	xmlhttp_twitter.onreadystatechange=updatetwitterfollowers;
	xmlhttp_twitter.open("GET",url,true);
	xmlhttp_twitter.send(null);
}
function go_to_previous_podcast(){
	location=document.frmpreviouspodcasts.previous_podcasts.options[document.frmpreviouspodcasts.previous_podcasts.selectedIndex].value;
}
function go_to_how_to_articles(){
	location=document.frmhow_to_articles.how_to_articles.options[document.frmhow_to_articles.how_to_articles.selectedIndex].value;
}

var xmlhttp_coupon_code;
function GetXmlHttpObjectcoupon_code() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}
function checkcouponcode() {

	if (document.getElementById("coupon_name").value.length > 0) {
		document.body.style.cursor = "wait";
		xmlhttp_coupon_code=GetXmlHttpObjectcoupon_code();
		if (xmlhttp_coupon_code==null)
		{
			alert ("Browser does not support HTTP Request");
			return;
		}
		var url="checkcouponcode.php";
		url=url+"?coupon_name="+document.getElementById("coupon_name").value;
		xmlhttp_coupon_code.onreadystatechange=updatecoupon_code;
		xmlhttp_coupon_code.open("GET",url,true);
		xmlhttp_coupon_code.send(null);
	}
	else {
		alert("Please enter a coupon code to check");
	}
}
function updatecoupon_code() {
	if (xmlhttp_coupon_code.readyState==4) {
		document.getElementById("coupon_code_result").innerHTML=xmlhttp_coupon_code.responseText;
		document.body.style.cursor = "default";
		window_change(4);
	}
}

function numbersonly(myfield, e, dec)
{
	var key;
	var keychar;

	if (window.event)
		key = window.event.keyCode;
	else if (e)
		key = e.which;
	else
   		return true;
	keychar = String.fromCharCode(key);

	// control keys
	if ((key==null) || (key==0) || (key==8) || 
	    (key==9) || (key==13) || (key==27) )
	   return true;

	// numbers
	else if ((("0123456789").indexOf(keychar) > -1))
	   return true;

	// decimal point jump
	else if (dec && (keychar == "."))
	   {
	   myfield.form.elements[dec].focus();
	   return false;
	   }
	else
	   return false;
}

// ************************************ COMMENTS ***********************************************
var xmlhttp_comments;
function GetXmlHttpObject_comments() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function update_comments() {
	if (xmlhttp_comments.readyState==4) {
		document.getElementById("divcomment").innerHTML=xmlhttp_comments.responseText;
		document.body.style.cursor = "default";
	}
}
function updateCOMMENTS() {

	if (document.getElementById("comments").value.length>0) {

		document.body.style.cursor = "wait";
		xmlhttp_comments=GetXmlHttpObject_comments();
		if (xmlhttp_comments==null)
		{
			alert ("Browser does not support HTTP Request");
			return;
		}

		var url="save_comments.php";
		url=url+"?q="+document.getElementById("comments").value;
		url=url+"&r="+document.getElementById("article_index").value;
		url=url+"&s="+document.getElementById("first_name").value;
		url=url+"&sid="+Math.random();
		xmlhttp_comments.onreadystatechange=update_comments;
		xmlhttp_comments.open("GET",url,true);
		xmlhttp_comments.send(null);
	}
	else {
		alert('Please enter a valid comment!');
	}
}
// *********************************************************************************************

var xmlhttp_send_me_my_subscription_number;

function GetXmlHttpObject_send_me_my_subscription_number() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function update_send_me_my_subscription_number() {
	if (xmlhttp_send_me_my_subscription_number.readyState==4) {
		document.getElementById("divsendsubscriptionnumber").innerHTML=xmlhttp_send_me_my_subscription_number.responseText;
		document.body.style.cursor = "default";
	}
}
function get_send_me_my_subscription_number() {
	
	if (document.getElementById("txtsendsubscriptionumber").value.length>0) {

		document.body.style.cursor = "wait";
		xmlhttp_send_me_my_subscription_number=GetXmlHttpObject_send_me_my_subscription_number();
		if (xmlhttp_send_me_my_subscription_number==null)
		{
			alert ("Browser does not support HTTP Request");
			return;
		}

		var url="load_send_me_my_subscription_number.php";
		url=url+"?q="+document.getElementById("txtsendsubscriptionumber").value;
		url=url+"&sid="+Math.random();
		xmlhttp_send_me_my_subscription_number.onreadystatechange=update_send_me_my_subscription_number;
		xmlhttp_send_me_my_subscription_number.open("GET",url,true);
		xmlhttp_send_me_my_subscription_number.send(null);
	}
	else {
		alert('Please enter a valid email address!');
	}
}
// *********************************************************************************************

var xmlhttp_growing_tips;
function GetXmlHttpObject_growing_tips() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function update_growing_tips() {
	if (xmlhttp_growing_tips.readyState==4) {
		document.getElementById("content").innerHTML=xmlhttp_growing_tips.responseText;
		document.body.style.cursor = "default";
	}
}
function getGROWINGTIPS() {
	
	if (document.getElementById("search_product_index").value.length>0) {

		document.body.style.cursor = "wait";
		xmlhttp_growing_tips=GetXmlHttpObject_growing_tips();
		if (xmlhttp_growing_tips==null)
		{
			alert ("Browser does not support HTTP Request");
			return;
		}

		var url="load_growing_tips.php";
		url=url+"?q="+document.getElementById("search_product_index").value;
		url=url+"&sid="+Math.random();
		xmlhttp_growing_tips.onreadystatechange=update_growing_tips;
		xmlhttp_growing_tips.open("GET",url,true);
		xmlhttp_growing_tips.send(null);
	}
	else {
		alert('Please enter a valid product index!');
	}
}
// *********************************************************************************************

function backtooriginalcontent() {
	loadarticles();	
}	

// *********************************************************************************************
// ******************  ARTICLE SEARCH **********************************************************
// *********************************************************************************************
var xmlhttp_article_search;
function GetXmlHttpObject_article_search() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function update_article_search() {
	if (xmlhttp_article_search.readyState==4) {
		document.getElementById("content").innerHTML=xmlhttp_article_search.responseText;
		document.body.style.cursor = "default";
	}
}
function article_search_button_click() {
	if (document.getElementById("article_search_box").value.length>0) {
		document.body.style.cursor = "wait";
		xmlhttp_article_search=GetXmlHttpObject_article_search();
		if (xmlhttp_article_search==null)
		{
			alert ("Browser does not support HTTP Request");
			return;
		}

		var url="load_article_search.php";
		url=url+"?q="+document.getElementById("article_search_box").value;
		url=url+"&sid="+Math.random();
		xmlhttp_article_search.onreadystatechange=update_article_search;
		xmlhttp_article_search.open("GET",url,true);
		xmlhttp_article_search.send(null);
	}
	else {
		alert('Please enter something into the search box!');
	}
}
// *********************************************************************************************
// ******************  END ARTICLE SEARCH ******************************************************
// *********************************************************************************************

// *********************************************************************************************
// ******************  START GET SPECIAL OF THE DAY ********************************************
// *********************************************************************************************
var xmlhttp_get_special_of_the_day;
function GetXmlHttpObject_get_special_of_the_day() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function update_get_special_of_the_day() {
	if (xmlhttp_get_special_of_the_day.readyState==4) {
		document.getElementById("get_special_of_the_day").innerHTML=xmlhttp_get_special_of_the_day.responseText;
		document.body.style.cursor = "default";
	}
}
function execute_special_of_the_day() {

		document.body.style.cursor = "wait";
		xmlhttp_get_special_of_the_day=GetXmlHttpObject_get_special_of_the_day();
		if (xmlhttp_get_special_of_the_day==null)
		{
			alert ("Browser does not support HTTP Request");
			return;
		}

		var url="get_special_of_the_day.php";
		url=url+"?q="+Math.random();
		xmlhttp_get_special_of_the_day.onreadystatechange=update_get_special_of_the_day;
		xmlhttp_get_special_of_the_day.open("GET",url,true);
		xmlhttp_get_special_of_the_day.send(null);
}
// *********************************************************************************************
// ******************  END GET SPECIAL OF THE DAY  *********************************************
// *********************************************************************************************

// *********************************************************************************************
// ******************  START THUMBS UP *********************************************************
// *********************************************************************************************
var xmlhttp_get_thumbs_up_count;
function GetXmlHttpObject_get_thumbs_up_count() {
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject) {
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

function update_get_thumbs_up_count() {
	if (xmlhttp_get_thumbs_up_count.readyState==4) {
		document.getElementById("get_thumbs_up_count").innerHTML=xmlhttp_get_thumbs_up_count.responseText;
		document.body.style.cursor = "default";
	}
}
function execute_thumbs_up(id) {

		document.body.style.cursor = "wait";
		xmlhttp_get_thumbs_up_count=GetXmlHttpObject_get_thumbs_up_count();
		if (xmlhttp_get_thumbs_up_count==null)
		{
			alert ("Browser does not support HTTP Request");
			return;
		}

		var url="get_thumbs_up_count.php";
		url=url+"?q="+id;
		url=url+"&sid="+Math.random();
		xmlhttp_get_thumbs_up_count.onreadystatechange=update_get_thumbs_up_count;
		xmlhttp_get_thumbs_up_count.open("GET",url,true);
		xmlhttp_get_thumbs_up_count.send(null);
}
// *********************************************************************************************
// ******************  END ATHUMBS UP **********************************************************
// *********************************************************************************************

function closing_window() {
	var txt='';

	txt="<head><title>Leaving Mike the Gardener Enterprises, LLC so soon?</title></head><body bgcolor='white' text=black>";
	txt+="<img src='veggies2.jpg' border='0' alt='Mike the Gardener Enterprises, LLC'>";
	txt+="<table cellpadding=3 cellspacing=3 border=0>";
	txt+='<tr><td valign=top align=left colspan=2><font face="arial" color="#003399" size="4">Don`t forget to visit our website, follow us on Twitter and join our Vegetable Gardening Facebook Fan Page.</font></td></tr>';
	txt+="</table>";
	txt+="<table cellpadding=3 cellspacing=3 border=0>";
	txt+='<tr><td valign=top align=left></td><td valign=top align=left><font face="arial" size="2"><a href="http://www.averagepersongardening.com" target=new>Mike the Gardener Enterprises, LLC</a></font></td></tr>';
	txt+='<tr><td valign=top align=left><img src="article_twitter_icon.png" border="0" align="left"></td><td valign=top align=left><font face="arial" size="2"><a href="http://www.twitter.com/mikethegardener" target=new>Twitter</a></font></td></tr>';
	txt+='<tr><td valign=top align=left><img src="article_facebook_icon.png" border="0" align="left"></td><td valign=top align=left><font face="arial" size="2"><a href="http://www.facebook.com/pages/Vegetable-Gardening/88717240962" target=new>Facebook</a></font></td></tr>';
	txt+='</table>';

	windowLeaving=window.open("",'Leaving','toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,resizable=1,width=700,height=420');
	windowLeaving.document.writeln(txt); 
}
