// -- mailto maker script
var theCode2;
var isReady2;
function createCode2(){
theCode2 = '';
isReady2 = false;
if (document.mailForm.toAddress.value == ""){
    alert('Please check that you are using a valid email address.');
    document.mailForm.toAddress.focus();
    return;}
if (document.mailForm.toAddress.value != ""){
    theCode2="mailto:"  +
    document.mailForm.toAddress.value+"?";}
if (document.mailForm.ccAddress.value != ""){
    theCode2 +="cc=" +
    document.mailForm.ccAddress.value +"&";}
if (document.mailForm.bccAddress.value != ""){
      theCode2 +="bcc=" +
      document.mailForm.bccAddress.value +"&";}
if (document.mailForm.theSubject.value != ""){
    theCode2 +="subject=" +
    document.mailForm.theSubject.value +"&";}
if (document.mailForm.theBody.value != ""){
    theCode2 +="body=" +
    document.mailForm.theBody.value;}
if (document.mailForm.theLink.value == ""){
    alert('If do not require the link text & need only a text string for use in Frontpage or Dreamweaver, just enter any default string into the link text box and you can select the code you need from the Frontpage code box');
    document.mailForm.theLink.focus();
    return;}
document.mailForm.showCode2.value = theCode2;
isReady2 = true;
}
function selectTheCode2(){
if (!isReady) return false;
document.mailForm.showCode2.focus();
document.mailForm.showCode2.select();
}
// -- mailto maker script
