// Array of strings
var menutxt = new Array()
menutxt[0] = "Visit the MS Engineering HomePage."
menutxt[1] = "Find out about MS Engineering."
menutxt[2] = "An explanation of gas spring struts theory."
menutxt[3] = "View a selection of gas spring struts applications."
menutxt[4] = "Visit the Frequently Asked Questions section."
menutxt[5] = "Contact MS Engineering."
menutxt[6] = "View data sheets for the MS Engineering product range."
menutxt[7] = "Order replacement gas spring struts for an existing application."
menutxt[8] = "Enquire about a new application for gas spring struts."
menutxt[9] = ''

// Div Writer Script
function writeDiv(num)
{
	if (document.getElementById)
	{
		x = document.getElementById('menu3');
		x.innerHTML = '';
		x.innerHTML = menutxt[num];
	}
	else if (document.all)
	{
		x = document.all['menu3'];
		x.innerHTML = menutxt[num];
	}
	else if (document.layers)
	{
		x = document.layers['page'].layers['menu3'];
		text2 = '<P CLASS="response">' + menutxt[num] + '</P>';
		x.document.open();
		x.document.write(text2);
		x.document.close();
	}
}
// end DivWriter