function getContents(page)
{
	var data = "";
	switch(page)
	{
	case "screenshots":
		data = "<h2> LIMP Image Gallery Screenshots</h2><br><p>These are some assorted screenshots for the LIMP project demonstrating its capabilities.<br><br><p style=\"height: 100px;\"><a href=\"img/img1.jpg\" target=\"_blank\"><img src=\"img/img1.jpg\" width=\"200px\" class=\"floatleft\"></a>This is the main screen of LIMP.  The album covers are generated automatically and can be set as desired from the settings screen.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img2.jpg\" target=\"_blank\"><img src=\"img/img2.jpg\" width=\"200px\" class=\"floatleft\"></a>This image shows the Preview Mode dislay when an image is selected to be shown.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img3.jpg\" target=\"_blank\"><img src=\"img/img3.jpg\" width=\"200px\" class=\"floatleft\"></a>The Settings screen provides all the modifications that can be made to LIMP using the defined password in \"src/definitions.php\".</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img4.jpg\" target=\"_blank\"><img src=\"img/img4.jpg\" width=\"200px\" class=\"floatleft\"></a>The Setup Images actions will create the desired thumbnails and medium-resolution images.  The resolutions are all configurable.  This setup should be run immediately following the upload of new images to the web server.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img5.jpg\" target=\"_blank\"><img src=\"img/img5.jpg\" width=\"200px\" class=\"floatleft\"></a>New to LIMP 3.7 is the ability to change the color theme.  The album covers can also be re-made to match the new theme with similar folder colors.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img9.jpg\" target=\"_blank\"><img src=\"img/img9.jpg\" width=\"200px\" class=\"floatleft\"></a>After changing the theme, simply reloading the page allows the new theme to be viewed.  Album covers will be recreated automatically.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img6.jpg\" target=\"_blank\"><img src=\"img/img6.jpg\" width=\"200px\" class=\"floatleft\"></a>Captions for each image, in each folder, can be created and modified.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img7.jpg\" target=\"_blank\"><img src=\"img/img7.jpg\" width=\"200px\" class=\"floatleft\"></a>Album Covers are also modifyable easily for each directory so they can be chosen if the random album cover images are undesirable.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img12.jpg\" target=\"_blank\"><img src=\"img/img12.jpg\" width=\"200px\" class=\"floatleft\"></a>This shows the result of setting up images.  The process will automatically keep resizing until completed.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/gray.jpg\" target=\"_blank\"><img src=\"img/gray.jpg\" width=\"200px\" class=\"floatleft\"></a>This is the gray theme showing all the albums and images.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/gray2.jpg\" target=\"_blank\"><img src=\"img/gray2.jpg\" width=\"200px\" class=\"floatleft\"></a>This is the gray theme the image in preview mode.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img10.jpg\" target=\"_blank\"><img src=\"img/img10.jpg\" width=\"200px\" class=\"floatleft\"></a>This is the black theme showing all the albums and images.</p><br>";
		data += "<br><p style=\"height: 100px;\"><a href=\"img/img13.jpg\" target=\"_blank\"><img src=\"img/img13.jpg\" width=\"200px\" class=\"floatleft\"></a>This is the black theme showing the image in preview mode.</p><br>";
		break;
	case "faq":
		data = "<h2>Frequently Asked Questions:</h2><br>No frequently asked questions yet.";
		break;
	case "links":
		data = "<h2>Links to related projects and sites</h2><a href=\"http://gallery.menalto.com/\">Gallery</a><br><a href=\"http://coppermine-gallery.net/\">Coppermine Photo Gallery</a><br><a href=\"http://sourceforge.net/projects/fsql/\">Flat File SQL</a>";
		break;
	case "downloads":
		data = "<h2>Downloads</h2><p><a href=\"https://sourceforge.net/projects/limpbrowser/files/limpbrowser/LIMP370.zip/download\">Download the latest LIMP from Sourceforge</p>";
		break;
	case "userguide":
		data = "<h2>Installation User Guide</h2><p><ol><li>Unzip the LIMP .zip file.</li><li>Upload the files to the desired directory on the web server.</li><li>Create a directory for each desired album.</li><li>Upload the images to each directory.</li><li>Go to the Settings page and run the \"Setup Images\" option to create the required thumbnails and medium-resolution images as required.</li><li>Add captions as desired for each image.</li><li>Modify the album covers and/or theme as desired.</li></p>";
		break;
	case "contact":
		data = "<h2>Contact</h2><p>Contact me via: <a href=\"mailto:guywmustang@sourceforge.net\">guywmustang@sourceforge.net</a></p>";
		break;
	case "sites":
		data = "<h2>Current Sites using LIMP</h2><p><a href=\"http://www.guywmustang.com/images\" target=\"_blank\">GuyWMustang.com</a><br><br><a href=\"http://www.sevendreamstudios.info\" target=\"_blank\">SevenDreamStudios</a></p>";
		break;
	case "documentation":
		data = "<h2>Documentation</h2><p>LIMP Sequence Diagram:<br><img width=\"400px\" src=\"docs/sequence.gif\"><br><br>Class Diagram:<br><img width=\"400px\" src=\"docs/classes.gif\"></p>";
		break;
	case "demo":
		data = "<h2>Demo site</h2><p><a href=\"http://guywmustang.com/dev/LIMP-Demo/\" target=\"_blank\">Click here to visit the demonstration site for LIMP</a></p>";
	}
	
	document.getElementById('left').innerHTML = data;
}