function fh_show_details( params ) {

	image_rockwood = new Image();
	image_rockwood.src = "images/rockwood_large.jpg";
	image_thedogg = new Image();
	image_thedogg.src = "images/thedoginn_large.jpg";
	image_forge = new Image();
	image_forge.src = "images/forgerecordingstudios_large.jpg";
	image_lad = new Image();
	image_lad.src = "images/lad_large.jpg";


	var rockwood = 'Located in the centre of Aylesbury in Kingsbury square, The Rockwood is a traditional grade II listed pub dating back over 200 years as a public house. The Rockwood to this day has retained a lot of its original features and character including the original beams and traditional open fire place.<br /><br />The Rockwood prides itself on having a friendly atmosphere and serving good quality food and drink. The outside courtyard is open all year round with heaters to warm you in the winter and a sun trap in the summer months.';
	var thedog = "The Dog Inn, a public house and inn based in Ewyas Harold, Herefordshire, UK.<br /><br />Tony wanted to be able to update the 'Latest News', 'What's On', 'Menu' and 'Links' sections of his website. This we have achieved with database driven pages, and maintenance pages available only to The Dog Inn. This means this website can always be up to date.";
	var forge = 'Forge Recording Studios. The Forge Recording Studios website required both photography (done by FrancisHosting) and a blog system for each of the directors. This site also features audio streaming so that samples can be listened to, but not downloaded and copied to CD. Sorry!<br /><br />This was achieved by embedding the media player in the webpages themselves.';
	var lad = 'Life At Dawn. This site was designed to showcase the products designed and created by Life At Dawn and also includes a shopping cart with paypal payment facility.<br /><br />Again, the products needed to be updated frequently so a database driven Sales Cart system was designed. Now Life At Dawn can offer products on its website based on the information and images they upload.';
	var sd = 'This website was designed for registered users to be able to post their spiritual experiences on the internet. It also includes a few experements from the FrancisHosting developers...<br /><br />Included in this site is a PHP forum where users can post their own messages once registered and also a live "chatroom" based on PHP and AJAX technologies.';
	var ste = 'Mark wanted a website where he could upload pictures of his work, add a description and have it display without wanting to learn HTML. FrancisHosting created this website for him with an image upload facility to enable him to do this.<br /><br />The site is based on PHP & MySQL technology and was the first to allow clients to change the wording on all their pages in real-time.  Something FrancisHosting has continued to offer.';
	var it = 'Welcome to the world of insane theories. Here you will find insane theories of all kinds, from the plausible, to the damn wacky. We have them all. This site was started by 2 people bored one night watching a program about Egypt\'s tombs, we thought we had better theories, it ballooned from there now here you are.<br /><br />Just a bit of fun from FrancisHosting and some mates :-)';

	switch (params) {

		case "rockwood":
			var selectedhtml = rockwood;
			document.images["detail_image"].src = image_rockwood.src;
			document.getElementById('detail_link').href = 'http://www.rockwoodpub.co.uk';
			
			break;

		case "dog":
			var selectedhtml = thedog;
			document.images["detail_image"].src = image_thedogg.src;
			document.getElementById('detail_link').href = 'http://domain1300712.sites.streamlinedns.co.uk';
			break;

		case "forge":
			var selectedhtml = forge;
			document.images["detail_image"].src = image_forge.src;
			document.getElementById('detail_link').href = 'http://www.francishosting.co.uk/forge';
			break;

		case "lad":
			var selectedhtml = lad;
			document.images["detail_image"].src = image_lad.src;
			document.getElementById('detail_link').href = 'http://www.lifeatdawn.co.uk';
			break;

		case "sd":
			var selectedhtml = sd;
			document.images["detail_image"].src = "images/sd_large.jpg";
			document.getElementById('detail_link').href = 'http://www.spiritualdiscussions.co.uk';
			break;

		case "ste":
			var selectedhtml = ste;
			document.images["detail_image"].src = 'images/ste_large.jpg';
			document.getElementById('detail_link').href = 'http://www.ste-mar.co.uk';
			break;

		case "it":
			var selectedhtml = it;
			document.images["detail_image"].src = 'images/it_large.jpg';
			document.getElementById('detail_link').href = 'http://www.insane-theories.co.uk';
			break;

		case 1:
			var selectedhtml = 'Please select a website';
	}

	document.getElementById('details').innerHTML = selectedhtml;

}

function fh_checkfields() {

	var name = document.getElementById('name').value;
	var email = document.getElementById('email').value;
	var query = document.getElementById('query').value;

	if ( name == "" || email == "" || query == "") {
		alert("Please ensure that your name, email and query fields are filled in.");
	} else {
		document.contactform.action = "sendcontact.php";
	}

}