1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
// Les fonctions du formulaire
// / Pour la boite à bijoux
function fbijoux(check_bijoux) {
_root.bijoux = check_bijoux.getValue();
if (_root.bijoux == true) {
_root.bijoux = " - BIJOUX - ";
} else {
_root.bijoux = "";
}
}
// / Pour la boite soleil
function fsoleil(check_soleil) {
_root.soleil = check_soleil.getValue();
if (_root.soleil == true) {
_root.soleil = " - SOLEIL - ";
} else {
_root.soleil = "";
}
}
// / Pour le cadre africain
function fcadre(check_cadre) {
_root.cadre = check_cadre.getValue();
if (_root.cadre == true) {
_root.cadre = " - CADRE - ";
} else {
_root.cadre = "";
}
}
// / Pour le porte épice
function fepice(check_epice) {
_root.epice = check_epice.getValue();
if (_root.epice == true) {
_root.epice = " - EPICE - ";
} else {
_root.epice = "";
}
}
function fplateau(check_plateau) {
_root.plateau = check_plateau.getValue();
if (_root.plateau == true) {
_root.plateau = " - PLATEAU - ";
} else {
_root.plateau = "";
}
}
function fthe(check_the) {
_root.the = check_the.getValue();
if (_root.the == true) {
_root.the = " - THE - ";
} else {
_root.the = "";
}
}
function fverre(check_verre) {
_root.verre = check_verre.getValue();
if (_root.verre == true) {
_root.verre = " - VERRE - ";
} else {
_root.verre = "";
}
}
function fmouchoir(check_mouchoir) {
_root.mouchoir = check_mouchoir.getValue();
if (_root.mouchoir == true) {
_root.mouchoir= " - MOUCHOIR - ";
} else {
_root.mouchoir = "";
}
}
// Envoi du formulaire
function fenvoyer(submit) {
getURL("mailto:adressemail?Subject=Demande de renseignements.&Body= ***Les photos : "+_root.bijoux+_root.soleil+_root.cadre+_root.epice+_root.plateau+_root.the+_root.verre+_root.mouchoir+" *** Adresse : "+_root.exp+String.fromCharCode(64)+_root.dom+" *** Tel : "+_root.tel);
} |