/* This function generates a random number to be used later to call random text/images when the page is reloaded. */function getRandom(maxNum){if (Math.random && Math.round)	{    var ranNum= Math.round(Math.random()*(maxNum-1));    ranNum+=1;    return ranNum;	}else	{	today=new Date();	hours=today.getHours();	mins=today.getMinutes();  	secn=today.getSeconds();	if (hours==19)		{		hours=18;		}	var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;	return ranNum;	}}/* This section writes text/images from an array when called from the body of the page. *//* Adjust the maxContent value below to match the number of items in the array. */var maxContent1 = 2;var maxContent2 = 1;var random1 = getRandom(maxContent1) - 1;var random2 = getRandom(maxContent2) - 1;/* Define the array here. Use this array for logos that are taller than they are wide.*/var Logos1=new Array(maxContent1);Logos1[0]="<a href='http://www.thedigitalspin.com' target='_blank'><img src='images/home/logos.digitalspin.gif' alt='DIgital Spin' width='109' height='97' border='0'></a>";Logos1[1]="<a href='http://www.gbtechcouncil.org' target='_blank'><img src='images/home/logos.gbtech.gif' alt='eHarbor' width='75' height='74' border='0'></a>";/* Define the array here. Use this array for logos that are taller than they are wide.*/var Descrs1=new Array(maxContent1);Descrs1[0]="Check out <a href='http://www.thedigitalspin.com' target='_blank'><b>The Digital Spin</b></a> hosted by Mario Armstrong, Monday's 7:00 - 8:00 pm WEAA 88.9 fm and Sunday's 9:00 - 9:30 am ABC-2.";Descrs1[1]="<b><a href='../advertise/eharbor.html'>eHarbor</a></b><br />A great place to post listings to buy or sell office equipment, computers, rental space, furniture, software or barter goods and services for just about anything tech or business related.";/* Define the array here. Use this array for logos that are wider than they are tall.*/var Logos2=new Array(maxContent2);Logos2[0]="<a href='../resources/techdirectory.html'><img src='images/home/logos.matd.gif' alt='Mid Atlantic Technology DIrectory' width='182' height='76' border='0'></a>";/* Define the array here. Use this array for logos that are wider than they are tall.*/var Descrs2=new Array(maxContent2);Descrs2[0]="<p>The Directory will include: <ul><li>Over 10,000 names and titles of Mid-Atlantic technology executives and professionals;</li><li>2,000 technology companies in the Mid-Atlantic;</li><li>Over 1,000 professional services firms in the region;</li><li>Listings for the states of Virginia, Maryland, Washington DC, Pennsylvania, Delaware and West Virginia</li></ul><a href='../resources/techdirectory.html'>Order here</a></p>";