//////////////////////////////////////////////////////////////// // Global variables //////////////////////////////////////////////////////////////// USETEXTLINKS = 1 indexOfEntries = new Array nEntries = 0 doc = document browserVersion = 0 selectedFolder=1 //////////////////////////////////////////////////////////////// // Definition of class Folder //////////////////////////////////////////////////////////////// function Folder(folderDescription, hreference) //constructor { //constant data this.desc = folderDescription this.hreference = hreference this.id = -1 this.navObj = 0 this.iconImg = 0 this.nodeImg = 0 this.isLastNode = 0 //dynamic data this.isOpen = true this.iconSrc = "votre_moto/ftv2folderopen.gif" this.children = new Array this.nChildren = 0 //methods this.initialize = initializeFolder this.setState = setStateFolder this.addChild = addChild this.createIndex = createEntryIndex this.hide = hideFolder this.display = display this.renderOb = drawFolder this.totalHeight = totalHeight this.subEntries = folderSubEntries this.outputLink = outputFolderLink this.outputLink1 = outputFolderLink1 } function setStateFolder(isOpen) { var subEntries var totalHeight var fIt = 0 var i=0 if (isOpen == this.isOpen) return if (browserVersion == 2) { totalHeight = 0 for (i=0; i < this.nChildren; i++) totalHeight = totalHeight + this.children[i].navObj.clip.height subEntries = this.subEntries() if (this.isOpen) totalHeight = 0 - totalHeight for (fIt = this.id + subEntries + 1; fIt < nEntries; fIt++) indexOfEntries[fIt].navObj.moveBy(0, totalHeight) } this.isOpen = isOpen propagateChangesInState(this) } function propagateChangesInState(folder) { var i=0 if (folder.isOpen) { if (folder.nodeImg) if (folder.isLastNode) folder.nodeImg.src = "votre_moto/ftv2mlastnode.gif" else folder.nodeImg.src = "votre_moto/ftv2mnode.gif" folder.iconImg.src = "votre_moto/ftv2folderopen.gif" for (i=0; i 0) auxEv = "" else auxEv = "" if (level>0) if (lastNode) //the last 'brother' in the children array { this.renderOb(leftSide + auxEv + "") leftSide = leftSide + "" this.isLastNode = 1 } else { this.renderOb(leftSide + auxEv + "") leftSide = leftSide + "" this.isLastNode = 0 } else this.renderOb("") if (nc > 0) { level = level + 1 for (i=0 ; i < this.nChildren; i++) { if (i == this.nChildren-1) this.children[i].initialize(level, 1, leftSide) else this.children[i].initialize(level, 0, leftSide) } } } function drawFolder(leftSide) { if (browserVersion == 2) { if (!doc.yPos) doc.yPos=8 doc.write("") } doc.write("") doc.write("") doc.write("
") doc.write(leftSide) this.outputLink1() doc.write(""+"") doc.write("") if (USETEXTLINKS) { this.outputLink() doc.write(this.desc + "") } else doc.write(this.desc) doc.write("
") if (browserVersion == 2) { doc.write("
") } if (browserVersion == 1) { this.navObj = doc.all["folder"+this.id] this.iconImg = doc.all["folderIcon"+this.id] this.nodeImg = doc.all["nodeIcon"+this.id] } else if (browserVersion == 2) { this.navObj = doc.layers["folder"+this.id] this.iconImg = this.navObj.document.images["folderIcon"+this.id] this.nodeImg = this.navObj.document.images["nodeIcon"+this.id] doc.yPos=doc.yPos+this.navObj.clip.height } } function outputFolderLink() { if (this.hreference) { doc.write(" 0) doc.write("onClick='javascript:clickOnFolder("+this.id+")'") doc.write(">") } else doc.write("") // doc.write("") } function outputFolderLink1() { if (this.hreference) { doc.write(" 0) doc.write("onClick='javascript:clickOnFolder("+this.id+")'") doc.write(">") } else doc.write("") doc.write("") } function addChild(childNode) { this.children[this.nChildren] = childNode this.nChildren++ return childNode } function folderSubEntries() { var i = 0 var se = this.nChildren for (i=0; i < this.nChildren; i++){ if (this.children[i].children) //is a folder se = se + this.children[i].subEntries() } return se } //////////////////////////////////////////////////////////////// // Definition of class Item (a document or link inside a Folder) //////////////////////////////////////////////////////////////// function Item(itemDescription, itemLink) // Constructor { // constant data this.desc = itemDescription this.link = itemLink this.id = -1 //initialized in initalize() this.navObj = 0 //initialized in render() this.iconImg = 0 //initialized in render() this.iconSrc = "votre_moto/ftv2doc.gif" // methods this.initialize = initializeItem this.createIndex = createEntryIndex this.hide = hideItem this.display = display this.renderOb = drawItem this.totalHeight = totalHeight } function hideItem() { if (browserVersion == 1) { if (this.navObj.style.display == "none") return this.navObj.style.display = "none" } else { if (this.navObj.visibility == "hiden") return this.navObj.visibility = "hiden" } } function initializeItem(level, lastNode, leftSide) { this.createIndex() if (level>0) if (lastNode) //the last 'brother' in the children array { this.renderOb(leftSide + "") leftSide = leftSide + "" } else { this.renderOb(leftSide + "") leftSide = leftSide + "" } else this.renderOb("") } function drawItem(leftSide) { if (browserVersion == 2) doc.write("") doc.write("") doc.write("
") doc.write(leftSide) doc.write("") doc.write("") doc.write("") doc.write("") if (USETEXTLINKS) doc.write("" + this.desc + "") else doc.write(this.desc) doc.write("
") if (browserVersion == 2) doc.write("
") if (browserVersion == 1) { this.navObj = doc.all["item"+this.id] this.iconImg = doc.all["itemIcon"+this.id] } else if (browserVersion == 2) { this.navObj = doc.layers["item"+this.id] this.iconImg = this.navObj.document.images["itemIcon"+this.id] doc.yPos=doc.yPos+this.navObj.clip.height } } //////////////////////////////////////////////////////////////// // Methods common to both objects (pseudo-inheritance) //////////////////////////////////////////////////////////////// function display() { if (browserVersion == 1) this.navObj.style.display = "block" else this.navObj.visibility = "show" } function createEntryIndex() { this.id = nEntries indexOfEntries[nEntries] = this nEntries++ } // total height of subEntries open function totalHeight() //used with browserVersion == 2 { var h = this.navObj.clip.height var i = 0 if (this.isOpen) //is a folder and _is_ open for (i=0 ; i < this.nChildren; i++) h = h + this.children[i].totalHeight() return h } //////////////////////////////////////////////////////////////// // Events //////////////////////////////////////////////////////////////// function clickOnFolder(folderId) { var clicked = indexOfEntries[folderId] if (!clicked.isOpen) clickOnNode(folderId) return if (clicked.isSelected) return } function clickOnNode(folderId) { var clickedFolder = 0 var state = 0 clickedFolder = indexOfEntries[folderId] state = clickedFolder.isOpen clickedFolder.setState(!state) //open<->close } function initializeDocument() { if (doc.all) browserVersion = 1 //IE4 else if (doc.layers) browserVersion = 2 //NS4 else browserVersion = 0 //other foldersTree.initialize(0, 1, "") foldersTree.display() if (browserVersion > 0) { doc.write(" ") // close the whole tree clickOnNode(0) // open the root folder clickOnNode(0) } } //////////////////////////////////////////////////////////////// // Auxiliary Functions for Folder-Tree backward compatibility //////////////////////////////////////////////////////////////// function gFld(description, hreference) { folder = new Folder(description, hreference) return folder } function gLnk(target, description, linkData) { fullLink = "" if (target==0) { fullLink = linkData //+"target=\"basefrm\"" } else { if (target==1) fullLink = linkData //+" target=_blank" else fullLink = linkData // if open a new window: +" target=\"basefrm\"" } linkItem = new Item(description, fullLink) return linkItem } function insFld(parentFolder, childFolder) { return parentFolder.addChild(childFolder) } function insDoc(parentFolder, document) { parentFolder.addChild(document) } //////////////////////////////////////////////////////////////// // Generate the Tree //////////////////////////////////////////////////////////////// foldersTree = gFld("ESSAIS MOTARDNAUTES", "") aux1 = insFld(foldersTree, gFld("APRILIA ", "")) aux2 = insFld(aux1, gFld("FUTURA", "")) insDoc(aux2, gLnk(2, "Hervé : - très bonne moto pour rouler en solo ou en duo. Accepte tou...", "javascript:openWin('votre_moto/aff_art.asp?art=559');")) aux2 = insFld(aux1, gFld("Habana", "")) insDoc(aux2, gLnk(2, "Van : -SCOOTER IDEAL POUR INTERURBAIN AVEC UN LOOK RETRO...", "javascript:openWin('votre_moto/aff_art.asp?art=425');")) aux2 = insFld(aux1, gFld("PEGASO 3", "")) insDoc(aux2, gLnk(2, "pascal-belgique : -bonne moto, manque d'accesoires ( expl: echappement,...)...", "javascript:openWin('votre_moto/aff_art.asp?art=69');")) aux2 = insFld(aux1, gFld("RS ", "")) insDoc(aux2, gLnk(2, "Wazup : Moto excellente pour ceux qui concoivent la moto comme un lo...", "javascript:openWin('votre_moto/aff_art.asp?art=594');")) aux2 = insFld(aux1, gFld("RSV R", "")) insDoc(aux2, gLnk(2, "scaff : C'est une super bécane qui envoie du gaz...", "javascript:openWin('votre_moto/aff_art.asp?art=697');")) aux1 = insFld(foldersTree, gFld("BMW ", "")) aux2 = insFld(aux1, gFld("K 1200 LT", "")) insDoc(aux2, gLnk(2, "01 : excellente moto par contre problèmes importants de pneumatiq...", "javascript:openWin('votre_moto/aff_art.asp?art=74');")) aux2 = insFld(aux1, gFld("-k1", "")) insDoc(aux2, gLnk(2, "Villard2 : -très bonne moto pour faire de longs trajets, déevoreuse de ...", "javascript:openWin('votre_moto/aff_art.asp?art=867');")) aux2 = insFld(aux1, gFld("R 80 GS", "")) insDoc(aux2, gLnk(2, "MARCEAU : a recommander pour petit budget - ou pour couple débutant le...", "javascript:openWin('votre_moto/aff_art.asp?art=863');")) aux2 = insFld(aux1, gFld("R100RS", "")) insDoc(aux2, gLnk(2, "Theotherone : mon seul regret c'est que je ne l'ai plus...", "javascript:openWin('votre_moto/aff_art.asp?art=114');")) aux2 = insFld(aux1, gFld("R1100R", "")) insDoc(aux2, gLnk(2, "STEPHANE 60 : Très bonne moto pour débuter.Sa bonne maniabilité,ses repris...", "javascript:openWin('votre_moto/aff_art.asp?art=679');")) aux2 = insFld(aux1, gFld("R1100rs", "")) insDoc(aux2, gLnk(2, "Fred : -excellente machine, qui a cependant du mal à faire oublier ...", "javascript:openWin('votre_moto/aff_art.asp?art=493');")) aux2 = insFld(aux1, gFld("R1100RT", "")) insDoc(aux2, gLnk(2, "-bm77590 : Je suis trés satisfait par ma RT, mais on en dit trop du bie...", "javascript:openWin('votre_moto/aff_art.asp?art=543');")) insDoc(aux2, gLnk(2, "- : -Sacré machine a dévorer le bitume a deux avec bagages....", "javascript:openWin('votre_moto/aff_art.asp?art=821');")) aux2 = insFld(aux1, gFld("R1150GS", "")) insDoc(aux2, gLnk(2, "- : FANTASTIQUE pour les grands (moi: 1,90m) et voyager à 2...", "javascript:openWin('votre_moto/aff_art.asp?art=696');")) aux2 = insFld(aux1, gFld("R1150RT", "")) insDoc(aux2, gLnk(2, "bm à fond : -rien a dire sauf pb embrayage et pont a50000kms mais je l'a...", "javascript:openWin('votre_moto/aff_art.asp?art=783');")) aux2 = insFld(aux1, gFld("R1200GS", "")) insDoc(aux2, gLnk(2, "-pat : le meilleur trail du marché, souple, puissant et extrêmement...", "javascript:openWin('votre_moto/aff_art.asp?art=914');")) aux2 = insFld(aux1, gFld("R850RT", "")) insDoc(aux2, gLnk(2, "FlatFab : Je l'adore ! Elle a les défauts d'une RT, mais pour moi, c'e...", "javascript:openWin('votre_moto/aff_art.asp?art=481');")) aux1 = insFld(foldersTree, gFld("BUELL ", "")) aux2 = insFld(aux1, gFld("X1", "")) insDoc(aux2, gLnk(2, "Jacky : SUPER MOTEUR DANS UNE BONNE PARTIE CYCLE MAIS MAUVAISE FINIT...", "javascript:openWin('votre_moto/aff_art.asp?art=431');")) aux1 = insFld(foldersTree, gFld("CAGIVA ", "")) aux2 = insFld(aux1, gFld("Supercity", "")) insDoc(aux2, gLnk(2, "Louveto : -Super moto qui incite a l'attaque, que du bonheur...", "javascript:openWin('votre_moto/aff_art.asp?art=550');")) aux1 = insFld(foldersTree, gFld("DUCATI ", "")) aux2 = insFld(aux1, gFld("748 S", "")) insDoc(aux2, gLnk(2, "Prune : tres bonne moto, a ne pas essayer si vous ne voulez pas en a...", "javascript:openWin('votre_moto/aff_art.asp?art=182');")) aux2 = insFld(aux1, gFld("900 SS carbu", "")) insDoc(aux2, gLnk(2, "Mimi : Moto sympa à emmener sur petites routes, mais navrante sur g...", "javascript:openWin('votre_moto/aff_art.asp?art=448');")) aux2 = insFld(aux1, gFld("900 SSIE", "")) insDoc(aux2, gLnk(2, "Frelon : -SUPER BECANE QUI MANQUE MALHEUREUSEMENT DE WATTS (AHHH SI E...", "javascript:openWin('votre_moto/aff_art.asp?art=387');")) aux2 = insFld(aux1, gFld("916", "")) insDoc(aux2, gLnk(2, "Lucas : -Une bonne moto pour le pistard du dimanche...", "javascript:openWin('votre_moto/aff_art.asp?art=419');")) aux2 = insFld(aux1, gFld("MONSTER 600", "")) insDoc(aux2, gLnk(2, "-ewing : -Son look la sauve, bruit moteur sympa, prix à payer ( entre...", "javascript:openWin('votre_moto/aff_art.asp?art=819');")) aux2 = insFld(aux1, gFld("Monster 900", "")) insDoc(aux2, gLnk(2, "BILL : A éviter, moto molle et qui est tjrs en reparation...", "javascript:openWin('votre_moto/aff_art.asp?art=206');")) aux2 = insFld(aux1, gFld("MONSTER S4", "")) insDoc(aux2, gLnk(2, "Meyrous : exclusive, y'a des supers sensations, un couple .........", "javascript:openWin('votre_moto/aff_art.asp?art=861');")) aux2 = insFld(aux1, gFld("ST2", "")) insDoc(aux2, gLnk(2, "FELIX : Elle est de tres loin superieur a mon ancienne BMW...", "javascript:openWin('votre_moto/aff_art.asp?art=88');")) insDoc(aux2, gLnk(2, "- : Pour les sportifs-amateurs de sensations fortes qui ne veule...", "javascript:openWin('votre_moto/aff_art.asp?art=246');")) insDoc(aux2, gLnk(2, "- : -...", "javascript:openWin('votre_moto/aff_art.asp?art=443');")) aux1 = insFld(foldersTree, gFld("GAS-GAS ", "")) aux2 = insFld(aux1, gFld("SM", "")) insDoc(aux2, gLnk(2, "Gastonjam : excellente moto faite pour le plaisir!mais un plaisir que l ...", "javascript:openWin('votre_moto/aff_art.asp?art=751');")) aux1 = insFld(foldersTree, gFld("HARLEY ", "")) aux2 = insFld(aux1, gFld("DYNA SPORT", "")) insDoc(aux2, gLnk(2, "papy : une harley qui freine,qui est confortable...", "javascript:openWin('votre_moto/aff_art.asp?art=824');")) aux2 = insFld(aux1, gFld("ROAD KING CLASSIC", "")) insDoc(aux2, gLnk(2, "WHITEBREAD72 : Bon engin mais je regrette de ne pas trouver des chromes sup...", "javascript:openWin('votre_moto/aff_art.asp?art=591');")) aux1 = insFld(foldersTree, gFld("HONDA ", "")) aux2 = insFld(aux1, gFld("Africa Twin", "")) insDoc(aux2, gLnk(2, "-Pierrot78 : -Très bon achat, je me sens mieux sur ce genre de trail, lég...", "javascript:openWin('votre_moto/aff_art.asp?art=482');")) aux2 = insFld(aux1, gFld("CB", "")) insDoc(aux2, gLnk(2, "Fredo : Elle n'est pas très très belle, mais aucune mauvaise surpris...", "javascript:openWin('votre_moto/aff_art.asp?art=239');")) insDoc(aux2, gLnk(2, "Florian : -...", "javascript:openWin('votre_moto/aff_art.asp?art=574');")) insDoc(aux2, gLnk(2, "Extrem495 : moto tres fun et attanchante capable de tout faire...", "javascript:openWin('votre_moto/aff_art.asp?art=531');")) insDoc(aux2, gLnk(2, "bubulle74 : La moto faite ludique et attachante...", "javascript:openWin('votre_moto/aff_art.asp?art=784');")) insDoc(aux2, gLnk(2, "lolo500cb : -tres tres bonne moto pour commencer...", "javascript:openWin('votre_moto/aff_art.asp?art=862');")) aux2 = insFld(aux1, gFld("CB F", "")) insDoc(aux2, gLnk(2, "- : -moto ideale pour duo, jeune permis, pour des personnes desi...", "javascript:openWin('votre_moto/aff_art.asp?art=782');")) aux2 = insFld(aux1, gFld("CBF 600", "")) insDoc(aux2, gLnk(2, "-pinkie : -moto ideale pour debuter,pour les trajets quotidiens et les...", "javascript:openWin('votre_moto/aff_art.asp?art=823');")) aux2 = insFld(aux1, gFld("CBR", "")) insDoc(aux2, gLnk(2, "-tintinbarteam : j'en suis a ma 3eme CBR et j'en aurai d'autres,excellente mo...", "javascript:openWin('votre_moto/aff_art.asp?art=165');")) insDoc(aux2, gLnk(2, "magic : Une tres bonne moto pour demarrer en sportive...", "javascript:openWin('votre_moto/aff_art.asp?art=112');")) aux2 = insFld(aux1, gFld("CBR 1100 XX", "")) insDoc(aux2, gLnk(2, "s_p_s : si j'avais à en changer ce serait pour la même!...", "javascript:openWin('votre_moto/aff_art.asp?art=210');")) insDoc(aux2, gLnk(2, "Vdiegelmann : Si je dois en reprendre une ce sera la meme...", "javascript:openWin('votre_moto/aff_art.asp?art=333');")) aux2 = insFld(aux1, gFld("CR", "")) insDoc(aux2, gLnk(2, "Tonio : -amateurs de sensations forte cette moto est pour vous...", "javascript:openWin('votre_moto/aff_art.asp?art=328');")) aux2 = insFld(aux1, gFld("CRM", "")) insDoc(aux2, gLnk(2, "- : -trés bonne moto pour randonnée en chemin...", "javascript:openWin('votre_moto/aff_art.asp?art=106');")) aux2 = insFld(aux1, gFld("DEAUVILLE", "")) insDoc(aux2, gLnk(2, "HP : j'ai changé hier pour une BMW, uniquement pour ce pb de tail...", "javascript:openWin('votre_moto/aff_art.asp?art=350');")) aux2 = insFld(aux1, gFld("Dominator", "")) insDoc(aux2, gLnk(2, "Theotherone : a reprenre un trail pas cher je reprends la même...", "javascript:openWin('votre_moto/aff_art.asp?art=118');")) insDoc(aux2, gLnk(2, "fredo : hyper bon trail poour toute personne d'un trail fiable et pe...", "javascript:openWin('votre_moto/aff_art.asp?art=136');")) insDoc(aux2, gLnk(2, "Lebreton : TRES bonne moto, dans son style (Trail accessible)...", "javascript:openWin('votre_moto/aff_art.asp?art=422');")) insDoc(aux2, gLnk(2, "Midoohan : -bonne moto pour le fun, les chemins avec pas trop de zones ...", "javascript:openWin('votre_moto/aff_art.asp?art=471');")) insDoc(aux2, gLnk(2, "Onteniente : Moto très agréable pour aller travailler ou pour de la petit...", "javascript:openWin('votre_moto/aff_art.asp?art=331');")) aux2 = insFld(aux1, gFld("HORNET N", "")) insDoc(aux2, gLnk(2, "Calimero : Un véritable jouet, mais attention, un jouet pour grands :=...", "javascript:openWin('votre_moto/aff_art.asp?art=633');")) aux2 = insFld(aux1, gFld("Hornet S", "")) insDoc(aux2, gLnk(2, "Didi : super affaire à 42000 balles , polyvalente/sportive...", "javascript:openWin('votre_moto/aff_art.asp?art=221');")) aux2 = insFld(aux1, gFld("PAN EUROPEAN", "")) insDoc(aux2, gLnk(2, "-LVMB : Une machine avec un coût de revient kilométrique trés bas ma...", "javascript:openWin('votre_moto/aff_art.asp?art=753');")) insDoc(aux2, gLnk(2, "marco : c'est ma 2è 1100 ST, je la recommande sans problème, moto sa...", "javascript:openWin('votre_moto/aff_art.asp?art=758');")) insDoc(aux2, gLnk(2, "TITI : -TRES BONNE ROUTIERE UN PEU CHERE....", "javascript:openWin('votre_moto/aff_art.asp?art=912');")) insDoc(aux2, gLnk(2, "TITI : -TRES BELLE MACHINE UN PEU CHERE MAIS QUEL REGAL POUR ROULER...", "javascript:openWin('votre_moto/aff_art.asp?art=916');")) aux2 = insFld(aux1, gFld("SEVEN FIFTY", "")) insDoc(aux2, gLnk(2, "GAIA : - BONNE MOTO pour débutant , attention au poids...", "javascript:openWin('votre_moto/aff_art.asp?art=650');")) insDoc(aux2, gLnk(2, "pere noel : très bonne machine, fiable et peu honéreuse en entretien, id...", "javascript:openWin('votre_moto/aff_art.asp?art=826');")) aux2 = insFld(aux1, gFld("Shadow", "")) insDoc(aux2, gLnk(2, "Francois : bonne becane jusqu'a 80KM/h pour 1 et 2 mais mou ! peche ide...", "javascript:openWin('votre_moto/aff_art.asp?art=409');")) aux2 = insFld(aux1, gFld("Transalp ", "")) insDoc(aux2, gLnk(2, "- : pour Paris-Banlieu rapport qualité/prix imbatable pour taill...", "javascript:openWin('votre_moto/aff_art.asp?art=305');")) insDoc(aux2, gLnk(2, "Wolfwerine : j'en suis à ma deuxieme transalp et j'adore cette bécane pol...", "javascript:openWin('votre_moto/aff_art.asp?art=413');")) aux2 = insFld(aux1, gFld("VARADERO", "")) insDoc(aux2, gLnk(2, "Loulou : La prochaine sera le modele 2003...", "javascript:openWin('votre_moto/aff_art.asp?art=762');")) insDoc(aux2, gLnk(2, "SEB : très bonne machine...", "javascript:openWin('votre_moto/aff_art.asp?art=508');")) insDoc(aux2, gLnk(2, "Domy : Trés bonne moto, pratique, un peu haute pour les petits gaba...", "javascript:openWin('votre_moto/aff_art.asp?art=767');")) aux2 = insFld(aux1, gFld("VFC", "")) insDoc(aux2, gLnk(2, "den's : moteur très onctueux et avec le cardan pas d'entretien parti...", "javascript:openWin('votre_moto/aff_art.asp?art=248');")) insDoc(aux2, gLnk(2, "didierharley : trés bonne moto custom,belle et puissante...", "javascript:openWin('votre_moto/aff_art.asp?art=562');")) aux2 = insFld(aux1, gFld("VFR", "")) insDoc(aux2, gLnk(2, "- : C'est une fantastique SPORT-GT (un bon compromis plutôt luxu...", "javascript:openWin('votre_moto/aff_art.asp?art=779');")) insDoc(aux2, gLnk(2, "Acrobati : Une formidable machine et je vous assure que je suis fier d'...", "javascript:openWin('votre_moto/aff_art.asp?art=365');")) insDoc(aux2, gLnk(2, "jc : moto facile et performante, utilisable au quotidien comme sp...", "javascript:openWin('votre_moto/aff_art.asp?art=492');")) insDoc(aux2, gLnk(2, "Jo : V4 honda....fiable,increvable ! super compromis routière/spo...", "javascript:openWin('votre_moto/aff_art.asp?art=918');")) aux2 = insFld(aux1, gFld("VTC Shadow", "")) insDoc(aux2, gLnk(2, "Manu : faites vous plaisir...", "javascript:openWin('votre_moto/aff_art.asp?art=320');")) aux2 = insFld(aux1, gFld("VTR", "")) insDoc(aux2, gLnk(2, "Guillaume : excellente machine sur le plan générale (duo, attaque, ...) ...", "javascript:openWin('votre_moto/aff_art.asp?art=325');")) insDoc(aux2, gLnk(2, "pierre : 44000 km avec... pour ça , augmentation du réservoir obligat...", "javascript:openWin('votre_moto/aff_art.asp?art=909');")) aux2 = insFld(aux1, gFld("XR R", "")) insDoc(aux2, gLnk(2, "Sierra3 : -très bonne moto, utilisations diverses...", "javascript:openWin('votre_moto/aff_art.asp?art=710');")) aux1 = insFld(foldersTree, gFld("HUSQVARNA ", "")) aux2 = insFld(aux1, gFld("610 SMS", "")) insDoc(aux2, gLnk(2, "freddo : Du fun et partout tout le tps!...", "javascript:openWin('votre_moto/aff_art.asp?art=661');")) aux2 = insFld(aux1, gFld("HRD Sonic 2 sm", "")) insDoc(aux2, gLnk(2, "Baldacchino : Tres bon cyclo offrant de bonnes perfs, un super look, une t...", "javascript:openWin('votre_moto/aff_art.asp?art=270');")) aux1 = insFld(foldersTree, gFld("KAWASAKI ", "")) aux2 = insFld(aux1, gFld("GTR", "")) insDoc(aux2, gLnk(2, "Tween : a vivre au quotidien, tranquilite d'esprit, a consommer sans...", "javascript:openWin('votre_moto/aff_art.asp?art=384');")) aux2 = insFld(aux1, gFld("KDX", "")) insDoc(aux2, gLnk(2, "-MARCEL8 : -SYMPA POUR RANDO TRANQUILLE PAS DE GROS ENTRETIEN ET PAS FA...", "javascript:openWin('votre_moto/aff_art.asp?art=755');")) aux2 = insFld(aux1, gFld("KLR", "")) insDoc(aux2, gLnk(2, "- : excellente machine à tout faire, trés plaisante et capable d...", "javascript:openWin('votre_moto/aff_art.asp?art=748');")) insDoc(aux2, gLnk(2, "Trackerjack : moto surprenante et ludique, utilitaire bon à tout faire : b...", "javascript:openWin('votre_moto/aff_art.asp?art=756');")) insDoc(aux2, gLnk(2, "- : MACHINE A TOUT FAIRE. BALADE / VILLE/ ROUTE...", "javascript:openWin('votre_moto/aff_art.asp?art=815');")) aux2 = insFld(aux1, gFld("Z1000", "")) insDoc(aux2, gLnk(2, "DocteurZ : Une moto magnifique et une vrai arme dans les cols. Que du b...", "javascript:openWin('votre_moto/aff_art.asp?art=816');")) aux2 = insFld(aux1, gFld("ZR7", "")) insDoc(aux2, gLnk(2, "SABINE : Moto homogène et agréable, d'une fiabilté étonnante. Ses que...", "javascript:openWin('votre_moto/aff_art.asp?art=438');")) aux2 = insFld(aux1, gFld("ZR7S", "")) insDoc(aux2, gLnk(2, "Burnout750 : -une tres bonne routiere prete a aller loin avec confort et ...", "javascript:openWin('votre_moto/aff_art.asp?art=430');")) insDoc(aux2, gLnk(2, "LIBERTE : -SUPER MOTO ROBUSTE COUPLEUSE ECONOMIQUE...", "javascript:openWin('votre_moto/aff_art.asp?art=868');")) insDoc(aux2, gLnk(2, "phelinecpl : -tres bonne moto ma préféré parmis celle que j'ai eut...", "javascript:openWin('votre_moto/aff_art.asp?art=873');")) aux2 = insFld(aux1, gFld("ZRX", "")) insDoc(aux2, gLnk(2, "- : bonne machine pour se faire plaisir; excellente fiabilité ; ...", "javascript:openWin('votre_moto/aff_art.asp?art=373');")) aux2 = insFld(aux1, gFld("ZRX S", "")) insDoc(aux2, gLnk(2, "Titi : -moto idéale pour route / ville / duo...", "javascript:openWin('votre_moto/aff_art.asp?art=548');")) insDoc(aux2, gLnk(2, "Florian : -...", "javascript:openWin('votre_moto/aff_art.asp?art=763');")) insDoc(aux2, gLnk(2, "yabousa : -idéal performente du caractère aussi bonne en ville quant m...", "javascript:openWin('votre_moto/aff_art.asp?art=820');")) aux2 = insFld(aux1, gFld("ZX12-R", "")) insDoc(aux2, gLnk(2, "Nepenthe : débutants s'abstenir......", "javascript:openWin('votre_moto/aff_art.asp?art=451');")) aux2 = insFld(aux1, gFld("ZX7 R", "")) insDoc(aux2, gLnk(2, "mINUS : C'est une sportive qui n'a pas son pareil. Une moto totaleme...", "javascript:openWin('votre_moto/aff_art.asp?art=666');")) aux2 = insFld(aux1, gFld("ZXR", "")) insDoc(aux2, gLnk(2, "thomas15 : très bonne petite sportive à déconseiller aux débutants...", "javascript:openWin('votre_moto/aff_art.asp?art=153');")) insDoc(aux2, gLnk(2, "Taou : -bonne moto , a exploiter dans les cols ou sur circuit...", "javascript:openWin('votre_moto/aff_art.asp?art=360');")) insDoc(aux2, gLnk(2, "- : -bonne motos pour commencer les sportives mais un peu creu, ...", "javascript:openWin('votre_moto/aff_art.asp?art=565');")) insDoc(aux2, gLnk(2, "motoman : ne pas mettre entre toutes les mains car il faut garder la t...", "javascript:openWin('votre_moto/aff_art.asp?art=817');")) insDoc(aux2, gLnk(2, "Stef : Pour moi, c'est le compromis parfait après avoir eu 2 R1, 2 ...", "javascript:openWin('votre_moto/aff_art.asp?art=919');")) aux2 = insFld(aux1, gFld("ZXR636", "")) insDoc(aux2, gLnk(2, "-lefevre91 : motos terrible qui a la hargne...", "javascript:openWin('votre_moto/aff_art.asp?art=872');")) insDoc(aux2, gLnk(2, "larsouille : une excellente moto a ne pas mettre entre les mains de n'imp...", "javascript:openWin('votre_moto/aff_art.asp?art=876');")) aux2 = insFld(aux1, gFld("ZZR", "")) insDoc(aux2, gLnk(2, "Scarface : tres bonne moto à confier à des motards sages.(car moteur ép...", "javascript:openWin('votre_moto/aff_art.asp?art=712');")) insDoc(aux2, gLnk(2, "toniofull : moteur fantastique...", "javascript:openWin('votre_moto/aff_art.asp?art=231');")) insDoc(aux2, gLnk(2, "Chatus : -...", "javascript:openWin('votre_moto/aff_art.asp?art=449');")) insDoc(aux2, gLnk(2, "ced : très bonne moto pour conducteur cool, agréable à piloter...", "javascript:openWin('votre_moto/aff_art.asp?art=711');")) insDoc(aux2, gLnk(2, "-scoubidou : Moto attelé à un COBRA GT (2 PL) - bon compromis puissance...", "javascript:openWin('votre_moto/aff_art.asp?art=587');")) aux1 = insFld(foldersTree, gFld("KTM ", "")) aux2 = insFld(aux1, gFld("DUKE II", "")) insDoc(aux2, gLnk(2, "Fleuret : Bonne !...", "javascript:openWin('votre_moto/aff_art.asp?art=866');")) aux2 = insFld(aux1, gFld("SX", "")) insDoc(aux2, gLnk(2, "- : -une très bonne moto pour les connaisseurs...", "javascript:openWin('votre_moto/aff_art.asp?art=542');")) aux1 = insFld(foldersTree, gFld("MBK ", "")) aux2 = insFld(aux1, gFld("NEW FLAME X", "")) insDoc(aux2, gLnk(2, "mimouni1 : Très bon compromis entre gabarit, panache et mobilité - pass...", "javascript:openWin('votre_moto/aff_art.asp?art=681');")) aux1 = insFld(foldersTree, gFld("PEUGEOT ", "")) aux2 = insFld(aux1, gFld("speedfight", "")) insDoc(aux2, gLnk(2, "Afetrglauque : -un tres bon produit meme si un nitro à de meilleures aptitu...", "javascript:openWin('votre_moto/aff_art.asp?art=541');")) aux1 = insFld(foldersTree, gFld("SUZUKI ", "")) aux2 = insFld(aux1, gFld("BANDIT 1200", "")) insDoc(aux2, gLnk(2, "-doc47 : bonne moto et excellent rapport qualité prix...", "javascript:openWin('votre_moto/aff_art.asp?art=682');")) insDoc(aux2, gLnk(2, "fremion1 : pas vraiment pour les débutants...", "javascript:openWin('votre_moto/aff_art.asp?art=759');")) insDoc(aux2, gLnk(2, "mylpat : si je devais reprendre une moto se serait la mème mais avec ...", "javascript:openWin('votre_moto/aff_art.asp?art=760');")) insDoc(aux2, gLnk(2, "Talabart : -serait idéale avec l'injection et 15 kg de moins...", "javascript:openWin('votre_moto/aff_art.asp?art=345');")) insDoc(aux2, gLnk(2, "- : très bon rapport fiabilité/plaisir/prix....", "javascript:openWin('votre_moto/aff_art.asp?art=869');")) aux2 = insFld(aux1, gFld("BANDIT 400", "")) insDoc(aux2, gLnk(2, "Miakou : parfait pour débuter : meilleurs sensations que les moto-éco...", "javascript:openWin('votre_moto/aff_art.asp?art=635');")) aux2 = insFld(aux1, gFld("BANDIT 600", "")) insDoc(aux2, gLnk(2, "guiguisky : BONNE MOTO POUR JEUNE MOTARD PAS CHERE TRES PEU ENTRETIEN...", "javascript:openWin('votre_moto/aff_art.asp?art=761');")) insDoc(aux2, gLnk(2, "Saxolucky : tres bonne moto pour apprendre ou pour quelqu'un qui ne rech...", "javascript:openWin('votre_moto/aff_art.asp?art=503');")) insDoc(aux2, gLnk(2, "-axe : - bonne moto pour débuter...", "javascript:openWin('votre_moto/aff_art.asp?art=822');")) aux2 = insFld(aux1, gFld("DR", "")) insDoc(aux2, gLnk(2, "hercoll : -pour un mono déstiné à faire de l'enduro, je le vois bien m...", "javascript:openWin('votre_moto/aff_art.asp?art=781');")) aux2 = insFld(aux1, gFld("DR RSE", "")) insDoc(aux2, gLnk(2, "jo : exellente en ville (hauteur guidon par rapport rétros autos)...", "javascript:openWin('votre_moto/aff_art.asp?art=778');")) aux2 = insFld(aux1, gFld("DR350 Supermotard", "")) insDoc(aux2, gLnk(2, "Nico : Très bonne moto pour s'apprendre,très économique, amusante à...", "javascript:openWin('votre_moto/aff_art.asp?art=596');")) aux2 = insFld(aux1, gFld("DRS", "")) insDoc(aux2, gLnk(2, "mike charlie : -pour la ballade et la ville...", "javascript:openWin('votre_moto/aff_art.asp?art=385');")) aux2 = insFld(aux1, gFld("GSG", "")) insDoc(aux2, gLnk(2, "Mimi : Elle n'existe et n'a pas de remplacante, dommage......", "javascript:openWin('votre_moto/aff_art.asp?art=297');")) aux2 = insFld(aux1, gFld("GSX 1200", "")) insDoc(aux2, gLnk(2, "gaaazzzz : Une superbe moto qui cache bien son jeux des performances di...", "javascript:openWin('votre_moto/aff_art.asp?art=76');")) insDoc(aux2, gLnk(2, "Pascal : Moto très attachante mais manque un peu de personnalité d'or...", "javascript:openWin('votre_moto/aff_art.asp?art=100');")) aux2 = insFld(aux1, gFld("GSX 1400", "")) insDoc(aux2, gLnk(2, "jse93 : Trés bonne moto polyvalente....", "javascript:openWin('votre_moto/aff_art.asp?art=337');")) aux2 = insFld(aux1, gFld("GSX Inazuma", "")) insDoc(aux2, gLnk(2, "Remy The Rider : Moto sympa pour débuter ,faite pour le duo et les ballades t...", "javascript:openWin('votre_moto/aff_art.asp?art=383');")) aux2 = insFld(aux1, gFld("GSXF", "")) insDoc(aux2, gLnk(2, "maxagaz : tres bonne 1ere moto, assez polyvalente, balade, voyage, con...", "javascript:openWin('votre_moto/aff_art.asp?art=401');")) insDoc(aux2, gLnk(2, "Ricoman46 : tres bonne moto en solo...", "javascript:openWin('votre_moto/aff_art.asp?art=318');")) insDoc(aux2, gLnk(2, "Christobanne : c'est une superbe moto acheter il y a 8 mois, prise en main ...", "javascript:openWin('votre_moto/aff_art.asp?art=497');")) insDoc(aux2, gLnk(2, "pierre : convient très bien pour débuter. Moteur un peu creux, et sur...", "javascript:openWin('votre_moto/aff_art.asp?art=910');")) aux2 = insFld(aux1, gFld("GSXR", "")) insDoc(aux2, gLnk(2, "TI : -bonne moto pour qui cherche une sportive assez coupleuse...", "javascript:openWin('votre_moto/aff_art.asp?art=397');")) insDoc(aux2, gLnk(2, "Albandit : c'est une tres bonne moto, mais il faut avoir du sang froid ...", "javascript:openWin('votre_moto/aff_art.asp?art=435');")) aux2 = insFld(aux1, gFld("GSXR 600", "")) insDoc(aux2, gLnk(2, "Stefan : -c'est la moto de ma femme mais moi qui suis habitué au gros...", "javascript:openWin('votre_moto/aff_art.asp?art=507');")) aux2 = insFld(aux1, gFld("HAYABUSA", "")) insDoc(aux2, gLnk(2, "FRANK : excellente compris entre la sportive et la routiere.position...", "javascript:openWin('votre_moto/aff_art.asp?art=229');")) insDoc(aux2, gLnk(2, "petit scarabée : je n'ai pas recherché les performances avec cette moto sinon...", "javascript:openWin('votre_moto/aff_art.asp?art=632');")) insDoc(aux2, gLnk(2, "-tof31 : -la moto la plus securisante que j'ai jamais conduite; parfa...", "javascript:openWin('votre_moto/aff_art.asp?art=913');")) aux2 = insFld(aux1, gFld("MARAUDER", "")) insDoc(aux2, gLnk(2, "- : -une 125 très maniable, confortable,bien équipée, un comport...", "javascript:openWin('votre_moto/aff_art.asp?art=865');")) aux2 = insFld(aux1, gFld("RF", "")) insDoc(aux2, gLnk(2, "marty : La RF est une moto d'exeption, dommage que la fabrication en...", "javascript:openWin('votre_moto/aff_art.asp?art=151');")) insDoc(aux2, gLnk(2, "master : Pas trop demodé, reelle aptitude sortive(11.2s au 400da - do...", "javascript:openWin('votre_moto/aff_art.asp?art=196');")) aux2 = insFld(aux1, gFld("SV 650N", "")) insDoc(aux2, gLnk(2, "Banditboy : Excellent engin, pas trop cher, que je recommande aux débuta...", "javascript:openWin('votre_moto/aff_art.asp?art=163');")) insDoc(aux2, gLnk(2, "murty : excelente machine pour cette cylindrée et se tarif...", "javascript:openWin('votre_moto/aff_art.asp?art=757');")) aux2 = insFld(aux1, gFld("TL R", "")) insDoc(aux2, gLnk(2, "MR PROPRE : très bonne moto avec du caracatère à ne pas mettre entre tou...", "javascript:openWin('votre_moto/aff_art.asp?art=686');")) insDoc(aux2, gLnk(2, "furigan : superbe moto vraiment content de l'avoir...", "javascript:openWin('votre_moto/aff_art.asp?art=911');")) aux2 = insFld(aux1, gFld("TL S", "")) insDoc(aux2, gLnk(2, "-Arnaud : Moi c'est une moto bien car pas cher pour ce que c'est et ac...", "javascript:openWin('votre_moto/aff_art.asp?art=687');")) insDoc(aux2, gLnk(2, "nono14- : super machine pour larsouille etpour tous les jours...", "javascript:openWin('votre_moto/aff_art.asp?art=685');")) aux1 = insFld(foldersTree, gFld("TRIUMPH ", "")) aux2 = insFld(aux1, gFld("SPEED TRIPLE", "")) insDoc(aux2, gLnk(2, "Manu : -excelente moto d'egoiste.mis a part le X11 aucun roadster n...", "javascript:openWin('votre_moto/aff_art.asp?art=84');")) insDoc(aux2, gLnk(2, "MDB : -tres bonne moto , avec modif. a apporter , débridage , opti...", "javascript:openWin('votre_moto/aff_art.asp?art=357');")) insDoc(aux2, gLnk(2, "Speeder : super moto, sportive moins cassante pour le dos...", "javascript:openWin('votre_moto/aff_art.asp?art=472');")) insDoc(aux2, gLnk(2, "TOMO : -...", "javascript:openWin('votre_moto/aff_art.asp?art=915');")) insDoc(aux2, gLnk(2, "Mister noos : -bonne machine ,moto a forte personnalite et caractere!!!dom...", "javascript:openWin('votre_moto/aff_art.asp?art=864');")) aux2 = insFld(aux1, gFld("T595 DAYTONA", "")) insDoc(aux2, gLnk(2, "Mimi : Je préfère la DAYTONA de 1994, celle du Joe Bar Team...", "javascript:openWin('votre_moto/aff_art.asp?art=307');")) insDoc(aux2, gLnk(2, "-MARCEL8 : -sportive homogene distillant de super sensations moto de ca...", "javascript:openWin('votre_moto/aff_art.asp?art=764');")) aux2 = insFld(aux1, gFld("TROPHY", "")) insDoc(aux2, gLnk(2, "Alex : -moto idéale pour voyager tranquille , sans probléme et long...", "javascript:openWin('votre_moto/aff_art.asp?art=403');")) aux1 = insFld(foldersTree, gFld("YAMAHA ", "")) aux2 = insFld(aux1, gFld("DIVERSION", "")) insDoc(aux2, gLnk(2, "DIV94 : Moto de type voiture; cad sans surprise. Rassurant mais parf...", "javascript:openWin('votre_moto/aff_art.asp?art=870');")) aux2 = insFld(aux1, gFld("DT", "")) insDoc(aux2, gLnk(2, "Spoutnix : cette moto est super pour débuter...", "javascript:openWin('votre_moto/aff_art.asp?art=255');")) aux2 = insFld(aux1, gFld("DTR 125 supermotard", "")) insDoc(aux2, gLnk(2, "dim : Pour debuter, c'est nickel le supermotard...", "javascript:openWin('votre_moto/aff_art.asp?art=155');")) aux2 = insFld(aux1, gFld("FAZER", "")) insDoc(aux2, gLnk(2, "MAN : Super moto, pas d'équivalent. La même en 1000 cm3...", "javascript:openWin('votre_moto/aff_art.asp?art=66');")) insDoc(aux2, gLnk(2, "BYLBO : Excellente machine (surtout apres un 600 XJN), mais qui rest...", "javascript:openWin('votre_moto/aff_art.asp?art=146');")) insDoc(aux2, gLnk(2, "Jeje : bonne moto dans l ensemble le prix s envole...", "javascript:openWin('votre_moto/aff_art.asp?art=175');")) insDoc(aux2, gLnk(2, "le chonz : Très bonne moto Plaisir/Route... Très facile en ville ( elle...", "javascript:openWin('votre_moto/aff_art.asp?art=252');")) insDoc(aux2, gLnk(2, "Fazer600yamaha : -tres bonne moto meme avec un speed r...", "javascript:openWin('votre_moto/aff_art.asp?art=322');")) insDoc(aux2, gLnk(2, "fred : tres bonne moto, fiable...", "javascript:openWin('votre_moto/aff_art.asp?art=399');")) insDoc(aux2, gLnk(2, "Vinch : machine hyper polyvalente, facile a vivre et tres performant...", "javascript:openWin('votre_moto/aff_art.asp?art=616');")) insDoc(aux2, gLnk(2, "- : Bonne Moto facile avant de se remettre en main un outil de p...", "javascript:openWin('votre_moto/aff_art.asp?art=715');")) insDoc(aux2, gLnk(2, "- : très bien en duo avec un top case avec dossier...", "javascript:openWin('votre_moto/aff_art.asp?art=860');")) insDoc(aux2, gLnk(2, "Blaster : Bonne petite 600, robuste,fiable, pas très cher, bon marché ...", "javascript:openWin('votre_moto/aff_art.asp?art=920');")) aux2 = insFld(aux1, gFld("FAZER 1000", "")) insDoc(aux2, gLnk(2, "Motarcool : pour moi la moto parfaite ,et j'essais environ 10 moto pout ...", "javascript:openWin('votre_moto/aff_art.asp?art=398');")) insDoc(aux2, gLnk(2, "Thierry : si vous recherchez une machine à sensations,passez votre che...", "javascript:openWin('votre_moto/aff_art.asp?art=567');")) aux2 = insFld(aux1, gFld("FJR", "")) insDoc(aux2, gLnk(2, "Seb : TRES BONNE ROUTIERE MAIS MOTO A EVITER SI VOUS NE FAITES QUE...", "javascript:openWin('votre_moto/aff_art.asp?art=519');")) insDoc(aux2, gLnk(2, "grillet3 : -moto precedente fjr,et l actuelle fjr,et sur la prochaine s...", "javascript:openWin('votre_moto/aff_art.asp?art=709');")) aux2 = insFld(aux1, gFld("FZ 750", "")) insDoc(aux2, gLnk(2, "Chapuis : exellente machine,réglage distrib à 42000 kms!...", "javascript:openWin('votre_moto/aff_art.asp?art=92');")) aux2 = insFld(aux1, gFld("FZR", "")) insDoc(aux2, gLnk(2, "Jeje : très bonne machine, j'accroche encore une r1 en accélération...", "javascript:openWin('votre_moto/aff_art.asp?art=427');")) insDoc(aux2, gLnk(2, "Nico : -tres bonne moto pour débuter.elle allie tres bien une condu...", "javascript:openWin('votre_moto/aff_art.asp?art=871');")) aux2 = insFld(aux1, gFld("FZX", "")) insDoc(aux2, gLnk(2, "FRANCKY : C'EST MA PREMIERE MOTO, ELLE A 16 ANS ET J'EN SUIS SATISFAIT...", "javascript:openWin('votre_moto/aff_art.asp?art=649');")) aux2 = insFld(aux1, gFld("R1", "")) insDoc(aux2, gLnk(2, "Saramdiam : - très bonne moto, bien finie et très performante en FULL; M...", "javascript:openWin('votre_moto/aff_art.asp?art=500');")) insDoc(aux2, gLnk(2, "Saramdiam : - très bonne moto, bien finie et très performante en FULL; M...", "javascript:openWin('votre_moto/aff_art.asp?art=501');")) aux2 = insFld(aux1, gFld("TDM", "")) insDoc(aux2, gLnk(2, "Tigrou : tres bonne moto; moteur blindé et voyageuse. que vais je tro...", "javascript:openWin('votre_moto/aff_art.asp?art=64');")) insDoc(aux2, gLnk(2, "ferrari6 : -bonne békane seul ou en duo c'est le pied toute l'année......", "javascript:openWin('votre_moto/aff_art.asp?art=695');")) insDoc(aux2, gLnk(2, "Blondin : bonne moto pour ballade et tous les jour tres maniable entre...", "javascript:openWin('votre_moto/aff_art.asp?art=875');")) aux2 = insFld(aux1, gFld("TDR", "")) insDoc(aux2, gLnk(2, "mordoc : -tres bien pour se faire la main...", "javascript:openWin('votre_moto/aff_art.asp?art=780');")) insDoc(aux2, gLnk(2, "ABIDOU : MOTO INVINCIBLE EN 125/1 PEU CHERE A L'ACHAT MAIS POUR UN PL...", "javascript:openWin('votre_moto/aff_art.asp?art=874');")) aux2 = insFld(aux1, gFld("THUNDERACE", "")) insDoc(aux2, gLnk(2, "Feb75 : Très bonne moto que je conseille à ceux qui aime le R1 mais ...", "javascript:openWin('votre_moto/aff_art.asp?art=467');")) aux2 = insFld(aux1, gFld("THUNDERCAT", "")) insDoc(aux2, gLnk(2, "SCARABEE : Tres bonne moto, facile, joueuse avec un tres bon moteur mai...", "javascript:openWin('votre_moto/aff_art.asp?art=62');")) insDoc(aux2, gLnk(2, "Jurassic21 : Bonne routière au caractère sportif...", "javascript:openWin('votre_moto/aff_art.asp?art=439');")) insDoc(aux2, gLnk(2, "jcf12 : Bonne machine, elle tient bien la côte mais on en trouve pas...", "javascript:openWin('votre_moto/aff_art.asp?art=818');")) aux2 = insFld(aux1, gFld("TMAX", "")) insDoc(aux2, gLnk(2, "MANENC : C'est juste un peu cher, mais vraiment sympa à utiliser (si ...", "javascript:openWin('votre_moto/aff_art.asp?art=442');")) aux2 = insFld(aux1, gFld("TRX", "")) insDoc(aux2, gLnk(2, "- : -j'en ai rêvé, YAM l'a fait! après 20 ans de moto, enfin un...", "javascript:openWin('votre_moto/aff_art.asp?art=109');")) insDoc(aux2, gLnk(2, "Ya2n : -excellente sportive pour le budget d'une basique...", "javascript:openWin('votre_moto/aff_art.asp?art=116');")) aux2 = insFld(aux1, gFld("TZR", "")) insDoc(aux2, gLnk(2, "Calimero : C'est la première et c'est celle que l'on n'oubliera jamais...", "javascript:openWin('votre_moto/aff_art.asp?art=157');")) aux2 = insFld(aux1, gFld("XJN", "")) insDoc(aux2, gLnk(2, "BYLBO : Excellente moto pour commencer mais manquant un peu de carac...", "javascript:openWin('votre_moto/aff_art.asp?art=103');")) aux2 = insFld(aux1, gFld("XJR 1200", "")) insDoc(aux2, gLnk(2, "-mouchard duport : très bonne moto, bon roadster agréable et performant et fiab...", "javascript:openWin('votre_moto/aff_art.asp?art=917');")) aux2 = insFld(aux1, gFld("XJR 1300", "")) insDoc(aux2, gLnk(2, "Basneo : excellente moto...", "javascript:openWin('votre_moto/aff_art.asp?art=214');")) insDoc(aux2, gLnk(2, "oldced : bonne moto mais un peu lourde (attention)...", "javascript:openWin('votre_moto/aff_art.asp?art=223');")) insDoc(aux2, gLnk(2, "Moltovi : Rien à redire sinon le POIDS...", "javascript:openWin('votre_moto/aff_art.asp?art=326');")) aux2 = insFld(aux1, gFld("XJR SP", "")) insDoc(aux2, gLnk(2, "Cédric : Super machine alors ACHETEZ EN UNE (LA MIENNE EST A VENDRE)...", "javascript:openWin('votre_moto/aff_art.asp?art=390');")) aux2 = insFld(aux1, gFld("XS - 1H1", "")) insDoc(aux2, gLnk(2, "Mimi : Elle est homologuée en courses d'anciennes et est à vendre...", "javascript:openWin('votre_moto/aff_art.asp?art=310');")) aux2 = insFld(aux1, gFld("XT ", "")) insDoc(aux2, gLnk(2, "tekno : très bonne moto pour rouler tous les jours ou même pour comm...", "javascript:openWin('votre_moto/aff_art.asp?art=169');")) aux2 = insFld(aux1, gFld("XTE 600", "")) insDoc(aux2, gLnk(2, "Jim-fizz : Gromono utilitaire / bien pour apprendre / économique / Assu...", "javascript:openWin('votre_moto/aff_art.asp?art=406');")) aux2 = insFld(aux1, gFld("YZF", "")) insDoc(aux2, gLnk(2, "Thomassin : bonne moto, confiance totale, aucuns soucis...", "javascript:openWin('votre_moto/aff_art.asp?art=80');")) insDoc(aux2, gLnk(2, "biron3 : Idéal pour 1ere sportive, fiable , économique....", "javascript:openWin('votre_moto/aff_art.asp?art=624');")) aux2 = insFld(aux1, gFld("YZF R1", "")) insDoc(aux2, gLnk(2, "Chris : moto de reve si elle n'était pas si cher a entretenir (plus ...", "javascript:openWin('votre_moto/aff_art.asp?art=216');")) aux2 = insFld(aux1, gFld("YZF SP", "")) insDoc(aux2, gLnk(2, "- : c'est trop pour la route, mais c'est le pied sur circuit...", "javascript:openWin('votre_moto/aff_art.asp?art=290');")) //////////////////////////////////////////////////////////////// // initialize the document //////////////////////////////////////////////////////////////// initializeDocument()