document.write("<div class='noprint'>")
document.write("<div class='maincaption'><center><table><tr><td><img src='images/mjiccs.png' width='59px' height='64px'></td><td>&nbsp;&nbsp;&nbsp;MJICCS&nbsp;&nbsp;&nbsp;</td><td><img src='images/mjiccs.png' width='59px' height='64px'></td></tr></table></center></div>")
document.write("</div>")

document.write("<div class=\"printonly\">")
document.write("<div class='maincaption'><center><table><tr><td><img src='images/mjiccs.png' width='59px' height='64px'></td><td>&nbsp;&nbsp;&nbsp;MJICCS&nbsp;&nbsp;&nbsp;</td><td><img src='images/mjiccs.png' width='59px' height='64px'></td></tr></table></center></div>")
document.write("</div>")

document.write("<div class=\"noprint\">")
document.write("<div class=\"menu\">")
document.write("<a class=\"menu startMenu\" href=\"index.html\">Home</a>")
document.write("<a class=\"menu\" href=\"Services.html\">Services</a>")
document.write("<a class=\"menu\" href=\"Projects.html\">Projects</a>")
document.write("<a class=\"menu\" href=\"Charges.html\">Charges</a>")
document.write("<a class=\"menu endMenu\" href=\"Contact.html\">Contact</a>")

document.write("</div>")
document.write("</div>")



// name - name of the desired cookie
// * return string containing value of specified cookie or null if cookie does not exist
function getCookie(name)
{
  var dc = document.cookie;
  var prefix = name + "=";
  var begin = dc.indexOf("; " + prefix);
  if (begin == -1) {
    begin = dc.indexOf(prefix);
    if (begin != 0) return null;
  } else
    begin += 2;
  var end = document.cookie.indexOf(";", begin);
  if (end == -1)
    end = dc.length;
  return unescape(dc.substring(begin + prefix.length, end));
}

function sendMail(address, subject)
{
	addr=new Array();
	addr[1]='enquiries';
	em=addr[address]+'@';
	em=em+'mjiccs';
	em=em+'.';
	em=em+'co';
	em=em+'.';
	em=em+'uk';
	window.location.replace('mailto:'+em+'?subject='+subject);
}

