function addSideAuctions() {

var sideAuctionHTML = ''; /* This will be constructed later */

/******** BE sure to use \' intead of just ' when adding single quotes into descriptions!!
 ******** Like, it would be people\'s and not people's.  ;-)  ***************************/

var auctionNoInfo = ''; /* just a short little blurb - leave as '' for no info */


var auction1URL = 'auctions74.htm'; /* just the auction**.htm */
var auction1Date = 'Monday, February 6, 2012';
var auction1Time = '10:30 A.M.';
var auction1StreetAddress = '383 Bell Crossing Road';
var auction1City = 'Madisonville';
var auction1State = 'Kentucky';
var auction1ImageSrc = 'images/2-6-12/100_0433-main-small.jpg';
var auction1HouseInfo = 'THE PROPERTY CONSISTS OF APPROXIMATELY 32 ACRES INCLUDING VINYL-SIDED RANCH STYLE HOME WITH 3-CAR ATTACHED GARAGE '; /* leave as = '' for no house description */
var auction1ItemInfo = '4 LARGE SHOP BUILDINGS & OFFICE TRAILER THIS PROPERTY OFFERS MANY POTENTIAL COMMERCIAL USES';

var auction2URL = ''; /* just the auction**.htm */
var auction2Date = '';
var auction2Time = '';
var auction2StreetAddress = '';
var auction2City = '';
var auction2State = '';
var auction2ImageSrc = '';
var auction2HouseInfo = ''; /* leave as = '' for no house description */
var auction2ItemInfo = '';

var auction3URL = ''; /* just the auction**.htm */
var auction3Date = '';
var auction3Time = '';
var auction3StreetAddress = '';
var auction3City = '';
var auction3State = '';
var auction3ImageSrc = '';
var auction3HouseInfo = ''; /* leave as = '' for no house description */
var auction3ItemInfo = '';

var auction4URL = ''; /* just the auction**.htm */
var auction4Date = '';
var auction4Time = '';
var auction4StreetAddress = '';
var auction4City = '';
var auction4State = '';
var auction4ImageSrc = '';
var auction4HouseInfo = ''; /* leave as = '' for no house description */
var auction4ItemInfo = '';

var auction5URL = ''; /* just the auction**.htm */
var auction5Date = '';
var auction5Time = '';
var auction5StreetAddress = '';
var auction5City = '';
var auction5State = '';
var auction5ImageSrc = '';
var auction5HouseInfo = ''; /* leave as = '' for no house description */
var auction5ItemInfo = '';

if (auctionNoInfo != '')
{
    sideAuctionHTML = sideAuctionHTML + '<div align="center"><span class="style4" style="line-height: 16px;">' + auctionNoInfo + '</span></div> ';
}

if (auction1URL != '')
{
	sideAuctionHTML = sideAuctionHTML +

	/* ------------- Begin Auction 1 ---------------- */
	'<a href="' + auction1URL + '" class="sideNavLinkStyle"><table width="100%" class="sideAuctionTable" border="0" cellspacing="0" cellpadding="0"  onclick="location=\'' + auction1URL + '\'"><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 5px; padding-bottom: 2px;" ><div align="justify"><b>' +
	/* ------------ Add the auction date/time/address ------------ */
	auction1Date + ' &bull; ' + auction1Time + '<br /><div style="padding-top: 3px; color: black;">' + auction1StreetAddress + '<br />' + auction1City + ', ' + auction1State +'</div></b>' +
	/* ---------------------------------------------- */
	'</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;">' +
	/* ------------ Add the preview photo of the auction ------------ */
	'<img src="'+ auction1ImageSrc + '" border="0" />' +
	/* ---------------------------------------------- */
	'</td></tr><tr><td valign="top" style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="justify">';
	/* ------------ Add the list of auction items ------------ */
	if (auction1HouseInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style4" style="line-height: 16px;">' + auction1HouseInfo + '</span> ';
		if (auction1ItemInfo != '')
		{
			sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>&bull;</i></span> ';
		}
	}
	if (auction1ItemInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>' + auction1ItemInfo + '</i></span>';
	}
	/* ---------------------------------------------- */
	sideAuctionHTML = sideAuctionHTML + '</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="right"><strong>more info<br></strong></div></td></tr></table></a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="1" background="images/bullets.gif"></td></tr></table>';
	/*------------- End Of Auction 1 ------------------- */
}

if (auction2URL != '')
{
	sideAuctionHTML = sideAuctionHTML +

	/* ------------- Begin Auction 2 ---------------- */
	'<a href="' + auction2URL + '" class="sideNavLinkStyle"><table width="100%" class="sideAuctionTable" border="0" cellspacing="0" cellpadding="0"  onclick="location=\'' + auction2URL + '\'"><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 5px; padding-bottom: 2px;" ><div align="justify"><b>' +
	/* ------------ Add the auction date/time/address ------------ */
	auction2Date + ' &bull; ' + auction2Time + '<br /><div style="padding-top: 3px; color: black;">' + auction2StreetAddress + '<br />' + auction2City + ', ' + auction2State +'</div></b>' +
	/* ---------------------------------------------- */
	'</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;">' +
	/* ------------ Add the preview photo of the auction ------------ */
	'<img src="'+ auction2ImageSrc + '" border="0" />' +
	/* ---------------------------------------------- */
	'</td></tr><tr><td valign="top" style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="justify">';
	/* ------------ Add the list of auction items ------------ */
	if (auction2HouseInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style4" style="line-height: 16px;">' + auction2HouseInfo + '</span> ';
			if (auction2ItemInfo != '')
			{
				sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>&bull;</i></span> ';
			}
	}
	if (auction2ItemInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>' + auction2ItemInfo + '</i></span>';
	}
	/* ---------------------------------------------- */
	sideAuctionHTML = sideAuctionHTML + '</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="right"><strong>more info<br></strong></div></td></tr></table></a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="1" background="images/bullets.gif"></td></tr></table>';
	/*------------- End Of Auction 2 ------------------- */
}

if (auction3URL != '')
{
	sideAuctionHTML = sideAuctionHTML +

	/* ------------- Begin Auction 2 ---------------- */
	'<a href="' + auction3URL + '" class="sideNavLinkStyle"><table width="100%" class="sideAuctionTable" border="0" cellspacing="0" cellpadding="0"  onclick="location=\'' + auction3URL + '\'"><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 5px; padding-bottom: 2px;" ><div align="justify"><b>' +
	/* ------------ Add the auction date/time/address ------------ */
	auction3Date + ' &bull; ' + auction3Time + '<br /><div style="padding-top: 3px; color: black;">' + auction3StreetAddress + '<br />' + auction3City + ', ' + auction3State +'</div></b>' +
	/* ---------------------------------------------- */
	'</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;">' +
	/* ------------ Add the preview photo of the auction ------------ */
	'<img src="'+ auction3ImageSrc + '" border="0" />' +
	/* ---------------------------------------------- */
	'</td></tr><tr><td valign="top" style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="justify">';
	/* ------------ Add the list of auction items ------------ */
	if (auction3HouseInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style4" style="line-height: 16px;">' + auction3HouseInfo + '</span> ';
		if (auction3ItemInfo != '')
		{
			sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>&bull;</i></span> ';
		}
	}
	if (auction3ItemInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>' + auction3ItemInfo + '</i></span>';
	}
	/* ---------------------------------------------- */
	sideAuctionHTML = sideAuctionHTML + '</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="right"><strong>more info<br></strong></div></td></tr></table></a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="1" background="images/bullets.gif"></td></tr></table>';
	/*------------- End Of Auction 2 ------------------- */
}

if (auction4URL != '')
{
	sideAuctionHTML = sideAuctionHTML +

	/* ------------- Begin Auction 2 ---------------- */
	'<a href="' + auction4URL + '" class="sideNavLinkStyle"><table width="100%" class="sideAuctionTable" border="0" cellspacing="0" cellpadding="0"  onclick="location=\'' + auction4URL + '\'"><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 5px; padding-bottom: 2px;" ><div align="justify"><b>' +
	/* ------------ Add the auction date/time/address ------------ */
	auction4Date + ' &bull; ' + auction4Time + '<br /><div style="padding-top: 3px; color: black;">' + auction4StreetAddress + '<br />' + auction4City + ', ' + auction4State +'</div></b>' +
	/* ---------------------------------------------- */
	'</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;">' +
	/* ------------ Add the preview photo of the auction ------------ */
	'<img src="'+ auction4ImageSrc + '" border="0" />' +
	/* ---------------------------------------------- */
	'</td></tr><tr><td valign="top" style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="justify">';
	/* ------------ Add the list of auction items ------------ */
	if (auction4HouseInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style4" style="line-height: 16px;">' + auction4HouseInfo + '</span> ';
		if (auction4ItemInfo != '')
		{
			sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>&bull;</i></span> ';
		}
	}
	if (auction4ItemInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>' + auction4ItemInfo + '</i></span>';
	}
	/* ---------------------------------------------- */
	sideAuctionHTML = sideAuctionHTML + '</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="right"><strong>more info<br></strong></div></td></tr></table></a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="1" background="images/bullets.gif"></td></tr></table>';
	/*------------- End Of Auction 2 ------------------- */
}

if (auction5URL != '')
{
	sideAuctionHTML = sideAuctionHTML +

	/* ------------- Begin Auction 2 ---------------- */
	'<a href="' + auction5URL + '" class="sideNavLinkStyle"><table width="100%" class="sideAuctionTable" border="0" cellspacing="0" cellpadding="0"  onclick="location=\'' + auction5URL + '\'"><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 5px; padding-bottom: 2px;" ><div align="justify"><b>' +
	/* ------------ Add the auction date/time/address ------------ */
	auction5Date + ' &bull; ' + auction5Time + '<br /><div style="padding-top: 3px; color: black;">' + auction5StreetAddress + '<br />' + auction5City + ', ' + auction5State +'</div></b>' +
	/* ---------------------------------------------- */
	'</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;">' +
	/* ------------ Add the preview photo of the auction ------------ */
	'<img src="'+ auction5ImageSrc + '" border="0" />' +
	/* ---------------------------------------------- */
	'</td></tr><tr><td valign="top" style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="justify">';
	/* ------------ Add the list of auction items ------------ */
	if (auction5HouseInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style4" style="line-height: 16px;">' + auction5HouseInfo + '</span> ';
		if (auction5ItemInfo != '')
		{
			sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>&bull;</i></span> ';
		}
	}
	if (auction5ItemInfo != '')
	{
		sideAuctionHTML = sideAuctionHTML + '<span class="style3" style="line-height: 18px;"><i>' + auction5ItemInfo + '</i></span>';
	}
	/* ---------------------------------------------- */
	sideAuctionHTML = sideAuctionHTML + '</div></td></tr><tr><td style="padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;" ><div align="right"><strong>more info<br></strong></div></td></tr></table></a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="1" background="images/bullets.gif"></td></tr></table>';
	/*------------- End Of Auction 2 ------------------- */
}

return sideAuctionHTML;

}
