var IndexNum
stName = new Array()
picName = new Array()
stTxt = new Array()
stColour = new Array()
stSpecs = new Array()

stSpecs[0] = "<p><b>Dimensions (w,h,d) :</b> 98 x 90 x 77<br><b>Output</b><br>Heating Output : 23 kWh<br>Central Heating : 17 kW<br>Room Heat : 6 kW"
stSpecs[1] = "<p><b>Dimensions (w,h,d) :</b> 103 x 85 x 66<br><b>Output</b><br>Heating Output : 21 kWh<br>Central Heating : 14.5 kW<br>Room Heat : 7 kW"
stSpecs[2] = "<p><b>Dimensions (w,h,d) :</b> 88 x 95 x 60<br><b>Output</b><br>Heating Output : 15.26 kWh<br>Central Heating : 11 kW<br>Room Heat : 5.27 kW"


stColour[0] = "Black, Cream"
stColour[1] = "Bordeaux, Soapstone"
stColour[2] = "Black, White, Brown"




stTxt[0] = "The Termosuprema, from Nordica, requires a flue which can be located on the top or at the rear.  The flue diameter is 160 mm."
stTxt[1] = "The Termorosa (TR02), from Nordica, requires a flue which can be located on the top or at the rear.  The flue diameter is 150 mm.  The dimensions for the oven are ; Height : 327 mm, Width : 265 mm and Depth : 408 mm."
stTxt[2] = "The Termo Cooker (TC13), from Nordica, requires a flue which is located on the top.  The flue diameter is 130 mm.  The dimensions for the oven are ; Height : 334 mm, Width : 230 mm and Depth : 355 mm."


stName[0] = "Termosuprema"
stName[1] = "Termorosa (TR02)"
stName[2] = "Termo Cooker (TC13)"



picName[0] = "lans/termosuprema.jpg"
picName[1] = "lans/termorosa.jpg"
picName[2] = "lans/termocooker.jpg"



var txtone
var txttwo
var txtthree
var txtfour
var txtfive
var txtsix


function showinfo(IndexNum)
{
txtone = '<img src="' +picName[IndexNum]+ '">'
txttwo = '<p><b> The ' +stName[IndexNum]+ '</b></p>'
txtthree = '<p>' +stTxt[IndexNum]+ '</p>'
txtfour = '<p><b>Avaibable Colours :</b><br>' +stColour[IndexNum]+ ''
txtfive = stSpecs[IndexNum]
txtsix = '<img src="products/lanstoves/colours.jpg">'

	document.getElementById("stovename").style.display='';
	document.getElementById("stovename").innerHTML = txttwo;
	document.getElementById("largepicture").style.display='';
	document.getElementById("largepicture").innerHTML = txtone;
	document.getElementById("stovetext").style.display='';
	document.getElementById("stovetext").innerHTML = txtthree;
	document.getElementById("colourtext").style.display='';
	document.getElementById("colourtext").innerHTML = txtfour;
	document.getElementById("spectext").style.display='';
	document.getElementById("spectext").innerHTML = txtfive;
	document.getElementById("speccolour").style.display='';
	document.getElementById("speccolour").innerHTML = txtsix;

	
	

}


	