// E-mail variables
// ----------------------------
// %n%                        = Line break (new line)
// %title%                    = title of the form (page heading if blank)
// %{n}%                      = Input field number in downloadFieldArray (0=Navn)

var downloadFormAction         = 'http://www.maintech.dk/includes/formmail.asp';
var downloadFormEmailRecipient = 'fvh@maintech.dk';
var downloadFormEmailSubject   = 'Download: \'%title%\'';
var downloadThankYouPage       = ''; //leave blank to let the user download the file




// Form construction
// ----------------------------
var downloadFormTitle          = 'Download fil \'%title%\'';
var downloadFieldArray         = [
    ['input', 'Navn', 'required'],
    ['input', 'Titel'],
    ['input', 'Firma'],
    ['input', 'Email', 'required'],
    ['input', 'Telefon', 'required'],
    ['checkbox', '', ['Ja tak, jeg er interesseret i nyhedsbreve og invitationer til seminarer.']],

    ['note', 'Tip: Hold [CTRL] nede når du trykker på Download for at starte din download med det samme. Dine personoplysninger vil ikke blive videregivet eller på anden måde distribueret til tredjemand.'],

    ['buttons',[['submit', 'Download'], ['reset', 'Cancel']]]
];

