messages=Array(
"<b>Smart Recycling</b><br> TMG UK has formed a partnership with a British company that collects our waste plastic and converts it into reusable materials, which are then used in our products, as well as everyday household consumables such as food and household packaging. This unique recycling process means that we produce zero plastic landfill waste, thus helping to maintain a healthier environment.",
"<b>British Made</b><br> All TMG products are made in the UK hence TMG UK. Keeping British industry alive is a key factor for Mayfield and it also helps us maintain the high quality we demand. We are also conscious about how vulnerable our planet has become of recent and by not having to import products from outside the UK means we are doing our part to help reduce harmful carbon emissions for future generations.",
"And yet a third. Remember to use backslashes to escape quotation marks like \"this\""
);

function show(id) {
document.getElementById("box").innerHTML=messages[id];
document.getElementById("box").style.visibility="visible";
}

function hide() {
document.getElementById("box").style.visibility="hidden";
}