function FeaturedArticles(){	var NUMCOMS = 37	var filePaths = new Array(NUMCOMS);	var comNames = new Array(NUMCOMS)	var i = 0;		for(i = 0; i < NUMCOMS; i++)	{		filePaths[i] = new String();		comNames[i] = new String();	}		filePaths[0] = "http://www.kandmantiques.com/Articles/BlueRidge.html";	comNames[0] = "Blue Ridge<br>Pottery";	filePaths[1] = "http://www.kandmantiques.com/Articles/Fireking.html";	comNames[1] = "Anchor Hocking's<br>Fire-King"	filePaths[2] = "http://www.kandmantiques.com/Articles/FlorenceCeramics.html";	comNames[2] = "Florence<br>Ceramics"	filePaths[3] = "http://www.kandmantiques.com/Articles/HomerLaughlin.html";	comNames[3] = "Homer Laughlin"	filePaths[4] = "http://www.kandmantiques.com/Articles/LibertyGlassWorks.html";	comNames[4] = "Liberty Glass<br>Works"	filePaths[5] = "http://www.kandmantiques.com/Articles/MongGlassWorks.html";	comNames[5] = "Monongha Glass<br>Company"	filePaths[6] = "http://www.kandmantiques.com/Articles/ShawneePotteryCompany.html";	comNames[6] = "Shawnnee Pottery<br>Company"	filePaths[7] = "http://www.kandmantiques.com/Articles/TheCambridgeGlassCo.html";	comNames[7] = "The Cambridge<br>Glass Company"	filePaths[8] = "http://www.kandmantiques.com/Articles/THEHALLCHINACO.html";	comNames[8] = "The Hall China<br>Company"	filePaths[9] = "http://www.kandmantiques.com/Articles/Westmoreland.html";	comNames[9] = "The Westmoreland<br>Glass Company"	filePaths[10] = "http://www.kandmantiques.com/Articles/AmericanBisque.html";	comNames[10] = "American Bisque<br>Pottery Company"	filePaths[11] = "http://www.kandmantiques.com/Articles/BeaumontGlass.html";	comNames[11] = "Beaumont Glass<br>Company"	filePaths[12] = "http://www.kandmantiques.com/Articles/CeramicArtsCompany.html";	comNames[12] = "Ceramic Arts<br>Pottery Company"	filePaths[13] = "http://www.kandmantiques.com/Articles/Coors.html";	comNames[13] = "Coors<br>Pottery Company"	filePaths[14] = "http://www.kandmantiques.com/Articles/Devilbiss.html";	comNames[14] = "The DeVilbiss<br>Manufacturing Company"	filePaths[15] = "http://www.kandmantiques.com/Articles/FentonArtGlass.html";	comNames[15] = "The Fenton Art Glass<br>Company"	filePaths[16] = "http://www.kandmantiques.com/Articles/FostoriaGlassCompany.html";	comNames[16] = "Fostoria<br>Glass Company"	filePaths[17] = "http://www.kandmantiques.com/Articles/HazelAtlasGlass.html";	comNames[17] = "The Hazel Atlas<br>Glass Company"	filePaths[18] = "http://www.kandmantiques.com/Articles/TheHarkerChinaCompany.html";	comNames[18] = "The Harker China<br>Company"	filePaths[19] = "http://www.kandmantiques.com/Articles/ImperialGlassCo.html";	comNames[19] = "The Imperial<br>Glass Company"	filePaths[20] = "http://www.kandmantiques.com/Articles/JohnsonBros.html";	comNames[20] = "Johnson<br>Brothers"	filePaths[21] = "http://www.kandmantiques.com/Articles/LGWright.html";	comNames[21] = "The L.G. Wright<br>Company"	filePaths[22] = "http://www.kandmantiques.com/Articles/MorganGlassWorks.html";	comNames[22] = "Morgantown<br>Glass Works"	filePaths[23] = "http://www.kandmantiques.com/Articles/NewMartinsvilleGlassCo.html";	comNames[23] = "The New Matinsville<br>Glass Company"	filePaths[24] = "http://www.kandmantiques.com/Articles/PadenCityGlass.html";	comNames[24] = "The Paden City<br>Glass Company"	filePaths[25] = "http://www.kandmantiques.com/Articles/TheAkroCompany.html";	comNames[25] = "Akro Agate<br> Company"	filePaths[26] = "http://www.kandmantiques.com/Articles/TheFederalGlassCompany.html";	comNames[26] = "The Federal<br>Glass Company"	filePaths[27] = "http://www.kandmantiques.com/Articles/NewMartinsvilleGlassCo.html";	comNames[27] = "The The Harker China<br>Company"	filePaths[28] = "http://www.kandmantiques.com/Articles/TheJeannetteGlassCompany.html";	comNames[28] = "The Jeannette<br>Glass Company"	filePaths[29] = "http://www.kandmantiques.com/Articles/TheMcKeeGlassCompany.html";	comNames[29] = "The McKee<br>Glass Company"	filePaths[30] = "http://www.kandmantiques.com/Articles/TheMetloxPotteryCompany.html";	comNames[30] = "The Metlox<br>Pottery Company"	filePaths[31] = "http://www.kandmantiques.com/Articles/TheRosevillePotteryCompany.html";	comNames[31] = "The Roseville<br>Pottery Company"	filePaths[32] = "http://www.kandmantiques.com/Articles/TheStanglPotteryCompany.html";	comNames[32] = "The Stangl<br>Pottery Company"	filePaths[33] = "http://www.kandmantiques.com/Articles/TheVikingGlassCo.html";	comNames[33] = "The Viking<br>Glass Company"	filePaths[34] = "http://www.kandmantiques.com/Articles/USGlass.html";	comNames[34] = "The United States<br>Glass Company"	filePaths[35] = "http://www.kandmantiques.com/Articles/TheHarkerChinaCompany.html";	comNames[35] = "The Harker<br>China Company"	filePaths[36] = "http://www.kandmantiques.com/Articles/Enesco.html";	comNames[36] = "Enesco"		i = Math.round(Math.random() * NUMCOMS);									while(i >= NUMCOMS)	{		i = Math.round(Math.random() * NUMCOMS);	}		document.write("<a href=");	document.write("\"" + filePaths[i] + "\">");	document.write(comNames[i] + "</a><BR>");}FeaturedArticles();