// POP UP A PREFORMATTED EMAIL MESSAGE WINDOW
function popupMessage() {
  // SET MESSAGE VALUES
  //var to = "anita@delot.softnet.co.uk";
  var to = "2tg300savingfaces@2TempleGardens.co.uk";
 // var cc = "another@whitehousewebdesign.co.uk";
  var subject = "Supporting 2TG 300";
  var body = 
      "I should like more information about supporting 2TG 300." +
      "\n\nMy telephone number is:          " +
      "\n\nThe best time to call me is:          " +
	  "\n\nName:          " +
	  "\n\nAddress:          ";

  // BUILD MAIL MESSAGE COMPONENTS 
  var doc = "mailto:" + to + 
      "&subject=" + escape(subject) + 
      "&body=" + escape(body); 

  // POP UP EMAIL MESSAGE WINDOW
  window.location = doc;
}
