function showContent(item) {

	switch (item) {


		// R-M: GRAPHITE
		case "Graphite":
		text = "Due to be launched at the end of 2004 to replace Quartz, this high-density compliant product range will further improve and enhance the already substantial benefits offered by Quartz. With links straight into colormaster the colour offer and accuracy will also be considerably improved."
		break
		
		//R-M ONYX HD
		case "Onyx":
		text = "Onyx HD is R-M's compliant waterborne system, which reduces solvent emissions by 75% when compared to conventional basecoat systems. Onyx HD can be applied and dried in the same way as Diamont, using a normal spraybooth, and R-M believes ONYX HD to be the fastest product of its type on the market. Stored and stirred in standard mixing machine, metal tins, ONYX HD has a shelf life of 24 months, making storage and logistics simpler and more cost effective."
		break
		
		//R-M UNO HD
		case "Uno":
		text = "Uno HD is R-M's high-density direct gloss system employing a unique, patented resin technology exclusive to BASF, which has been developed to provide an unrivalled level of opacity. Just one light coat and one full coat achieves superb coverage and gloss from the gun, plus of course, EPA compliancy."
		break
			
		//LECHLER HYDROFAN 
		case "Hydrofan":
		text="Lechler’s latest generation water-soluble basecoat has superb colour accuracy, high opacity, ease of application and excellent metallic lay down as it’s main features. This cost effective solution has a complete colour offer of solid’s, metallic and pearls and is of course fully compliant."
		break

		//LECHLER MACROFAN
		case "Macrofan":
		text="Lechler’s compliant solid colour offer consists of a HS 2K multi functional primer and topcoat system designed to reduce topcoat use and speed application times."
		break
		
		// MOTORCYCLES COLOR MOTO
		case "Color Moto":
		text="The increasing demand for motorcycle colours from R-M, as repairers employ plastics repair and refinishing as a cost effective (and profitable) alternative to pre-painted replacement panels has seen the R-M colour laboratory develop Color Moto.<br><br>Color Moto, like Colormaster is manufactured using the actual refinish materials, rather than risk the inaccuracy of printed colour swatches and includes 2,040 colours."
		break

		// MOTORCYCLES MOTO
		case "Moto":
		text="Lechler specialises in paint products for the motorbike sector and is an O.E.M. supplier to Aprilia, Derbi, Ducati, MBK, Moto Guzzi, Peugeot, Piaggio and Yamaha.<br><br>The technological know how gained from this experience is therefore made available to motorbike and scooter painting professionals.<br><br>The technically approved partnership agreements with associations such as Thatcham and the M.V.R.A. make Lechler further recognised as a sector leader covering 35 motorcycle manufacturers."
		break
		
		// LECHSYS (industrial)
		case "LechsysI":
		item = "Lechsys"
		text="Lechsys is an innovative system comprising of  a range of highly concentrated pigmented basecoats and pre-dosed binders able to reproduce a wide range of 1K & 2K  products, suitable for overcoating any substrate. The wide range of acrylic, waterbased and soft feel finishes are products which can be reproduced with various effects such as texture, matt, structured and metallic in thousands of industry standard and personalised colours."
		break

		// LECHSYS (commercial)
		case "LechsysC":
		item = "Lechsys"
		text="The long experience in this field allows Lechler to offer a wide range of high quality reliable products. Tailor made for different applications  & conditions, which give the maximum protection to buses, trucks, tanks, concrete mixers, dumpers and agricultural machines."
		break
		
		// Octobase (octoral)
		case "Octobase":
		item = "Octobase"
		text="The Octobase Eco System is one of the most user-friendly water-based coating systems currently available. With the help of our COINS CD-ROM (our computer-controlled search system), you can choose mixing colours with a high degree of colour accuracy from a comprehensive range of colour formulas. One of the improvements of the Octobase Eco System is that it is an entirely 'non-stirring' system: the mixing colours no longer need to be stirred before use, gently tipping the container suffices. Applying the Octobase Eco System is just as simple as applying any customary basic Varnish."
		break
		
	}

	title(item)
	bodytext(text)
	hideAllLayers()
	document.getElementById("content").style.display="block";

}

function title(text) {
document.getElementById("content_title").innerHTML = text;
}

function bodytext(text) {
document.getElementById("content_text").innerHTML = text;
}