// JavaScript Document

// Webs For Everyone 2009 v3.1
// script is copyright WFE 2009

var upText;

function showText(choice){
  upText = diplayedText(choice);
  document.getElementById('exInform').innerHTML = (upText);
}//end function

function diplayedText(dispThis){
	var textDisplayed;
	switch (dispThis){
	
	case'tem':
	textDisplayed = '<h3>Temples Estate Agents</h3>                  <p  class="exLink"><a href="http://www.templesestateagents.co.uk" target="_blank"><img src="../assets/images/templesWeb.jpg" alt="Temples Estate Agents" width="145" height="175" align="right" style="border:none; margin-left:10px; margin-bottom:5px;"/></a><a href="http://www.templesestateagents.co.uk" target="_blank">www.templesestateagents.co.uk</a></p>               <p>&nbsp;</p>         <p>Temples are an independent friendly Estate Agent in Aylesbury\'s old town. With a thriving business, they needed a web solution that would fulfil their many requirements.</p>         <p>The website which we created from scratch provides space for Selling, Purchasing and Renting property. A specific requirement of the site was that it had to interact with data from the office management system for Estate Agents \'Thesaurus\' provided by Universal. The site provides other useful information such as HIPs information and details of Temples Mortgage Services. A random image gallery is used to display different images each time a page is loaded.</p>';
	break;
		
	case'vec':
	textDisplayed = '<h3>Vectec - Fuel Management Services</h3>       <p  class="exLink"><a href="http://www.vectec.co.uk" target="_blank"><img src="../assets/images/vectecWeb.jpg" alt="Vectec - Fuel Management Services" width="145" height="175" align="right" style="border:none; margin-left:10px; margin-bottom:5px;"/></a><a href="http://www.vectec.co.uk" target="_blank">www.vectec.co.uk</a></p>             <p>&nbsp;</p>        <p>Vectec are a specialist business located in Wendover, Bucks. They provide excellent fuel management services, to companies and organisations who have private supplies of fuel for use with their vehicles.</p>       <p>The website provides them with the facility to inform their Clients and potential customers about their services, offer statory information regarding storage of fuel and case studies of companies that they are already working with. The website also has a large product catalogue for fuel related products, around 1350 items are held within this product range. Vectec benefit from a Content Management System to enables the client to update the website from any location.</p>';
	break;

	case'ayo':
	textDisplayed = '<h3>AY Online - Comprehensive Online Infomation for Aylesbury</h3>     <p  class="exLink"><a href="http://www.ayonline.co.uk" target="_blank"><img src="../assets/images/ayonlineWeb.jpg" alt="AY Online - Comprehensive Online Infomation for Aylesbury" width="145" height="175" align="right" style="border:none; margin-left:10px; margin-bottom:5px;"/></a><a href="http://www.ayonline.co.uk" target="_blank">www.ayonline.co.uk</a></p>       <p>&nbsp;</p>       <p>AY Online are a large community information website for Aylesbury Bucks. AY Online provides extensive information about all aspects of Aylesbury, from after school clubs through to local Car Service Centres or Bed and Breakfast providers.</p>        <p>The website provides local news, details of local events and a Business Directory. The key to the website is that quite often it will introduce the subject and then point the visitor to the website where the whole article or information can be found. This way it does not become out of date so quickly. This vast website uses our Content Managament System and showcases many different features and functions.</p>';
	break;

	}//end switch
	
return 	textDisplayed;
}//end function
