//Nicholaus A Malone http://www.scsr.nevada.edu/~nmalone

//CIT 152, Adventure Travel, Assignment 1

//This function writes lines of title type text
function write_title()
	{
		document.write("<h2 style=\"color:red;\">Fully Escorted Custom Tours</h2><h2 style=\"color:red;\">Private Guides and Drivers</h2>");
	}
//This function will create the adventure content
function write_adventures()
	{
		document.write("<table style=\"text-align: center;\"><tr>");
		//open row 1 write table cell 1
		document.write("<td><h3>Red Planet Adventure</h3><img src=\"mars.jpg\" alt=\"Mars Adventure\" title=\"Mars\" style=\"width:150px\; height:150px;\" /><p style=\"text-align: left;\">Enjoy a lovely 700 day round trip to the Red Planet.<br />Yours for only</p><p style=\"text-align: center; font-size: 14pt;\">&#36; 7,000,000,000.00</p><p style=\"font-size: 8pt;\"> please book 20 years in advance</p></td>");
		//write table cell 2 close row 1
		document.write("<td><h3>Trip to the Moon Base</h3><img src=\"moon.jpg\" alt=\"Moon Base\" title=\"The Moon\" style=\"width:150px\; height:150px;\" /><p style=\"text-align: left;\">Have a marvelous adventure on the Moon. &nbsp;Spend 7 days and 6 nights at only 1/3 gravity<br />Cheap at only</p><p style=\"text-align: center; font-size: 14pt;\">&#36; 18,000,000.00</p><p style=\"font-size: 8pt;\"> this trip is courtesy of the Russian Space Agency</p></td></tr>");
		//open row 2 write cell 1
		document.write("<tr><td><h3>Lost City of Atlantis</h3><img src=\"atlantis.jpg\" alt=\"Lost City of Atlantis\" title=\"Atlantis\" style=\"width:150px\; height:150px;\" /><p style=\"text-align: left;\">Scuba dive and hunt for lost artifacts of the ancient city of Atlantis<br />Yours for only</p><p style=\"text-align: center; font-size: 14pt;\">&#36; 25,000.00</p><p style=\"font-size: 8pt;\"> exciting Greek Isle tour included</p></td>");
		//write cell 2 close row 2 close table
		document.write("<td><h3>Indiana Jones&copy;</h3><img src=\"indiana_jones.gif\" alt=\"Indiana Jones&copy;\" title=\"Indiana Jones&copy;\" style=\"width:150px\; height:150px;\" /><p style=\"text-align: left;\">Adventure from India to the Arabian desert as you follow in the foot steps of India Jones&copy;<br />Yours for only</p><p style=\"text-align: center; font-size: 14pt;\">&#36; 45,000.00</p><p style=\"font-size: 8pt;\"> Indiana Jones&copy; is a copy write of Paramount Pictures</p></td></tr></table>");
	}