	function product_lines()
		{
		var pm_products = new Array();
		var pm_display = new Array();
		var pm_details = new Array();
		var multiplier = 12;
		var x, y;

		pm_products[0] = "http://www.bradygames.com/|BradyGames|Providing the leading video game strategy guides, that includes comprehensive tips, strategy, cheats, and more to help gamers get the most out of their game.";
		pm_products[1] = "http://www.quepublishing.com/|Que|Publisher of consumer reference books in the technology, self-help, and self-learning markets.";
		pm_products[2] = "http://www.samspublishing.com/|Sams|From introductory tutorials to comprehensive reference books, Sams is focused on teaching tomorrow's programmers, developers, and systems administrators the skills they need to build and maintain leading-edge technology.";
		pm_products[3] = "http://www.peachpit.com/|Peachpit Press|Publishing top-notch books on the latest in graphic design, desktop publishing, multimedia, Web publishing, and general computing.";
		pm_products[4] = "http://www.awl.com/cseng/|Addison-Wesley Professional|A leading publisher for high-quality and timely information for programmers, developers, engineers, and system administrators.";
		pm_products[5] = "http://www.adobe.com/misc/books.html|Adobe Press|Adobe Press is a world leader in high-quality books for visual communicators and the official source of training materials for Adobe software. Their books include the &quot;Classroom in a Book&quot; and &quot;Real World&quot; titles.";
		pm_products[6] = "http://www.ciscopress.com/|Cisco Press|Pearson Education, in partnership with Cisco Systems, brings you Cisco certification and technology resources. Cisco Press is your source for cutting-edge books by the leading suppliers and innovators of networking solutions for corporate intranets and the global Internet.";
		pm_products[7] = "http://www.phptr.com/bookseri/ftph.html|Financial Times Prentice Hall|Financial Times Prentice Hall brings you the best titles in management, finance, and business publishing.";
		pm_products[8] = "http://www.peachpit.com/books/mmpress.html|Macromedia Press|Macromedia and Peachpit Press collaborate to create a series of books that graphic designers and multimedia developers rely on to support their use of Macromedia software, such as Flash, Dreamweaver, Cold Fusion, Freehand, Director, among other packages.";
		pm_products[9] = "http://www.newriders.com/|New Riders|New Riders books provide a forum for the leading voices in creative and information technologies.";
		pm_products[10] = "http://www.pearsoned.co.uk/Bookshop/subject.asp?item=1|Prentice Hall Business|Practical and personal solutions to make you be better, do better, and feel better in your working life, whether you want to upgrade your personal skills or change your job, improve your managerial style or become a more powerful communicator, or simply find inspiration in the best business stories around.";
		pm_products[11] = "http://www.phptr.com/|Prentice Hall PTR|Prentice Hall PTR publishes high-quality books on many cutting-edge topics in computer science, business, and engineering.";
		pm_products[12] = "http://www.whartonsp.com/|Wharton School Publishing|By publishing many of the world's leading business authors in a portfolio of print and interactive formats, Wharton School Publishing aims to provide practical knowledge that can be applied by business people and policymakers to make real change in their professional lives.";

		for(x = 0; x < 5; x++)
			{
			y = Math.round(Math.random() * multiplier);
			pm_display[x] = pm_products[y];
			pm_products[y] = pm_products[multiplier - 1];
			pm_products.pop();
			multiplier--;
			}

		for(x = 0; x < 5; x++)
			{
			pm_details = pm_display[x].split("|");
			document.write("<b><a href='" + pm_details[0] + "' target='_self'>" + pm_details[1] + "</a><br></b>");
			document.write(pm_details[2] + "<br>");
			if(x != 4)
				{
				document.write("<br>");
				}
			document.close();
			}
		}
