 
// email address

function mailadd (which) {
   var one = "info@";
   var two = "double-s-disco.c";
   var three = "o.uk";
   if (which==2) {
   }
   if (which==3) {
   }
   return one+two+three;
}
function mailtag (which,subject) {
   return '<a href=\"mailto:' + mailadd(which) + '?subject=' + subject + '\">';
}
function maillink (which,text,subject) {
   if (!text) text = mailadd(which);
   if (!subject) subject = "Email from web site";
   return mailtag(which,subject) + text + "</a>";
}

// form: moredetails box pop-up

function moreDetails() {
   document.getElementById('moredetails').style.visibility='hidden';
   if (document.getElementById('searchengine').selected) { document.getElementById('moredetails').style.visibility='visible'; }
   if (document.getElementById('weddingdirectory').selected) { document.getElementById('moredetails').style.visibility='visible'; }
   if (document.getElementById('other').selected) { document.getElementById('moredetails').style.visibility='visible'; }
}

