/////////////////////////////////////////////////////
// makeArray function for old browsers
function makeArray(n) {
                this.length = n;
                for (var k = 1; k <= n; k++) {
                                this[k] = "";
                }
                return this;
        }
/////////////////////////////////////////////////////
// setup email select
var MailArray = new makeArray(5);
MailArray[0] = 'info@mirthmother.com';
MailArray[1] = 'info@mirthmother.com';
MailArray[2] = 'sales@mirthmother.com';
MailArray[3] = 'kriszta@mirthmother.com';
MailArray[4] = 'gregory@mirthmother.com';
MailArray[5] = 'webmaster@mirthmother.com';
function moveMail(info) {
     var indexer = MailArray[info];
     location = 'mailto:' + indexer;return true;
     }

