﻿function CreateMail()
{
var first = "enquiries";
var second = "@";
var third = "podsol";
var fourth = ".";
var fifth = "co";
var sixth = "uk";
document.getElementById("em").innerHTML = first+second+third+fourth+fifth+fourth+sixth;
}


function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
}