Vibreur "; } else { str += " "; } str += ""; if (layer.url) str += ""; if (this.font_start) str += this.font_start; str += layer.text; if (this.font_end) str += this.font_end; if (layer.url) str += " "; str += ""; str = str.replace("span", "span id='namoswlistspan" + layer.lid + "'"); if (is_ns4) { layer.document.writeln(str); layer.document.close(); } else if (is_ns6) { layer.innerHTML = str; layer.span = document.getElementById('namoswlistspan'+layer.lid); } else { layer.innerHTML = str; layer.span = document.all['namoswlistspan'+layer.lid]; } if (layer.type == 'list' && layer.list.visible) this.items[i].list.write(); } this.made = true; } function namosw_l_show() { var is_ns4 = navigator.appName.indexOf('Netscape', 0) != -1 && !document.getElementById; var is_ns6 = navigator.appName.indexOf('Netscape', 0) != -1 && document.getElementById; var layer; for(var i = 0; i < this.items.length; i++) { layer = this.items[i]; namosw_l_setclip(layer, 0, this.width, 0, this.height-1); if (is_ns4) { if (layer.oBgColor) layer.document.bgColor = layer.oBgColor; else layer.document.bgColor = this.bgColor; } else { if (layer.oBgColor) layer.style.backgroundColor = layer.oBgColor; else layer.style.backgroundColor = this.bgColor; } if (layer.type == 'list' && layer.list.visible) layer.list.show(); } this.shown = true; } function namosw_l_update(parent_visible, x, y) { var is_ns4 = navigator.appName.indexOf('Netscape', 0) != -1 && !document.getElementById; var is_ns6 = navigator.appName.indexOf('Netscape', 0) != -1 && document.getElementById; var top = y, layer, list; for(var i = 0; i < this.items.length; i++) { layer = this.items[i]; list = layer.list; if (this.visible && parent_visible) { if (is_ns4) { layer.visibility = "visible"; layer.top = top; layer.left = x; } else if (is_ns6) { layer.style.visibility = "visible"; layer.style.top = top; layer.style.left = x; } else { layer.style.visibility = "visible"; layer.style.pixelTop = top; layer.style.pixelLeft = x; // if (layer.url) layer.style.cursor = "hand"; } top += this.height; } else { if (is_ns4) layer.visibility = "hidden"; else if (is_ns6) layer.style.visibility = "hidden"; else layer.style.visibility = "hidden"; } if (layer.type == 'list') { if (list.visible) { if (!list.made) list.write(); if (!list.shown) list.show(); if (is_ns4) layer.document.images[0].src = "collapsed.gif"; else eval('document.images._img'+list.id+'.src = "collapsed.gif"'); } else { if (is_ns4) layer.document.images[0].src = "expanded.gif"; else eval('document.images._img'+list.id+'.src = "expanded.gif"'); } if (list.made) top = list.update(this.visible && parent_visible, x, top); } } return top; } function namosw_l_updateparent(parent_id) { this.parent_id = parent_id; for(var i = 0; i < this.items.length; i++) if (this.items[i].type == 'list') this.items[i].list.updateparent(parent_id); } function namosw_l_expand(i) { document.namosw_lists[i].visible = !document.namosw_lists[i].visible; list = document.namosw_lists[document.namosw_lists[i].parent_id]; list.update(true, list.x, list.y); } function namosw_l_make(x, y) { this.updateparent(this.id); this.write(); this.show(); this.update(true, x, y); this.x = x; this.y = y; } function namosw_l_additem(text, url, frame) { var is_ns4 = navigator.appName.indexOf('Netscape', 0) != -1 && !document.getElementById; var is_ns6 = navigator.appName.indexOf('Netscape', 0) != -1 && document.getElementById; var layer = null; if (is_ns4 && this.parent) layer = eval('this.parent.document.layers.namoswlistitem'+document.namosw_lists.lid); else if (is_ns6) layer = document.getElementById("namoswlistitem" + document.namosw_lists.lid); else layer = eval('document.all.namoswlistitem'+document.namosw_lists.lid); if (layer == null && is_ns4) layer = this.parent ? new Layer(this.width, this.parent) : new Layer(this.width); if (layer == null) return; if (url) layer.url = url; if (frame) { if (frame.indexOf('parent.') != 0) layer.frame = "_" + frame; else layer.frame = frame.substring(7, frame.length); } layer.type = 'item'; layer.text = text; layer.lid = document.namosw_lists.lid; this.items[this.items.length] = layer; layer.hbgColor = this.hbgColor; layer.oBgColor = this.bgColor; layer.fgColor = this.fgColor; layer.hfgColor = this.hfgColor; if (layer.captureEvents) layer.captureEvents(Event.MOUSEOVER|Event.MOUSEOUT|Event.MOUSEUP); layer.onmouseover = namosw_l_onmouseover; layer.onmouseout = namosw_l_onmouseout; // layer.onmouseup = namosw_l_onmouseup; document.namosw_lists.lid++; } function namosw_l_addlist(list, text, url, frame) { var is_ns4 = navigator.appName.indexOf('Netscape', 0) != -1 && !document.getElementById; var is_ns6 = navigator.appName.indexOf('Netscape', 0) != -1 && document.getElementById; var layer = null; if (is_ns4 && this.parent) layer = eval('this.parent.document.layers.namoswlistitem'+document.namosw_lists.lid); else if (is_ns6) layer = document.getElementById("namoswlistitem" + document.namosw_lists.lid); else layer = eval('document.all.namoswlistitem'+document.namosw_lists.lid); if (layer == null && is_ns4) layer = this.parent ? new Layer(this.width, this.parent) : new Layer(this.width); if (layer == null) return; if (url) layer.url = url; if (frame) { if (frame.indexOf('parent.') != 0) layer.frame = "_" + frame; else layer.frame = frame.substring(7, frame.length); } layer.list = list; layer.type = 'list'; layer.text = text; layer.lid = document.namosw_lists.lid; this.items[this.items.length] = layer; list.parent = this; layer.hbgColor = this.hbgColor; layer.oBgColor = this.bgColor; layer.fgColor = this.fgColor; layer.hfgColor = this.hfgColor; if (layer.captureEvents) layer.captureEvents(Event.MOUSEOVER|Event.MOUSEOUT|Event.MOUSEUP); layer.onmouseover = namosw_l_onmouseover; layer.onmouseout = namosw_l_onmouseout; // layer.onmouseup = namosw_l_onmouseup; document.namosw_lists.lid++; } function namosw_l_onmouseover() { var is_ns4 = navigator.appName.indexOf('Netscape', 0) != -1 && !document.getElementById; var is_ns6 = navigator.appName.indexOf('Netscape', 0) != -1 && document.getElementById; if (is_ns4) { if (this.hbgColor) this.bgColor = this.hbgColor; } else { if (this.hbgColor) this.style.backgroundColor = this.hbgColor; if (this.hfgColor) this.span.style.color = this.hfgColor; } if (this.url) self.status = this.url; } function namosw_l_onmouseout() { var is_ns4 = navigator.appName.indexOf('Netscape', 0) != -1 && !document.getElementById; var is_ns6 = navigator.appName.indexOf('Netscape', 0) != -1 && document.getElementById; if (is_ns4) { this.bgColor = this.oBgColor; } else { this.style.backgroundColor = this.oBgColor; this.span.style.color = this.fgColor; } if (this.url) self.status = ''; } function namosw_l_onmouseup() { if (this.url) { if (this.frame == 'blank') { window.open(this.url, 'win1'); } else { var frame_obj; if ((frame_obj = eval(this.frame)) != null) frame_obj.location = this.url; } } } function namosw_init_list(top_layer) { if (parseInt(navigator.appVersion) < 4) return; if (top_layer == '') return; document.namosw_lists = new Array(); document.namosw_lists.lid = 0; var is_ns4 = navigator.appName.indexOf('Netscape', 0) != -1 && !document.getElementById; var is_ns6 = navigator.appName.indexOf('Netscape', 0) != -1 && document.getElementById; var layer; if (is_ns4) layer = document.layers[top_layer]; else if (is_ns6) layer = document.getElementById(top_layer); else layer = document.all[top_layer]; var string = ""; for (i = 0; i < 57; i++) { string = string + "
"; } layer.innerHTML += string; l1 = new namosw_list(layer, true, 209, 22, 'Book Antiqua', '2', 'blue', '#FFC800', 0, '#C54901'); l2 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', '#F3BC4E', 0, 'white'); l3 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', '#DFCFA3', 0, 'white'); l3.additem('2 Pôles 3000 / 3600 Tr/mn', 'http://vibrateur.free.fr/cadre_MVSI_2.htm', 'blank'); l3.additem('4 Pôles 1500 / 1800 Tr/mn', 'http://vibrateur.free.fr/cadre_MVSI_4.htm', 'blank'); l3.additem('6 Pôles 1000 / 1200 Tr/mn', 'http://vibrateur.free.fr/cadre_MVSI_6.htm', 'blank'); l3.additem('8 Pôles 750 / 900 Tr/mn', 'http://vibrateur.free.fr/cadre_MVSI_8.htm', 'blank'); l2.addlist(l3, 'Série MVSI S90 - S02', '', 'self'); l4 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l5 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l5.additem('MVSI série E - EEx-e', 'http://vibrateur.free.fr/cadre_MVSI_2E.htm', 'blank'); l5.additem('MVSI série D - DIP', 'http://vibrateur.free.fr/cadre_MVSI_2D.htm', 'blank'); l5.additem('MVSI série C - CSA', 'http://vibrateur.free.fr/cadre_MVSI_2C.htm', 'blank'); l4.addlist(l5, '2 Pôles 3000 / 3600 Tr/mn', '', 'self'); l6 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l6.additem('MVSI série E - EEx-e', 'http://vibrateur.free.fr/cadre_MVSI_4E.htm', 'blank'); l6.additem('MVSI série D - DIP', 'http://vibrateur.free.fr/cadre_MVSI_4D.htm', 'blank'); l6.additem('MVSI série C - CSA', 'http://vibrateur.free.fr/cadre_MVSI_4C.htm', 'blank'); l4.addlist(l6, '4 Pôles 1500 / 1800 Tr/mn', '', 'self'); l7 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l7.additem('MVSI série E - EEx-e', 'http://vibrateur.free.fr/cadre_MVSI_6E.htm', 'blank'); l7.additem('MVSI série D - DIP', 'http://vibrateur.free.fr/cadre_MVSI_6D.htm', 'blank'); l7.additem('MVSI série C - CSA', 'http://vibrateur.free.fr/cadre_MVSI_6C.htm', 'blank'); l4.addlist(l7, '6 Pôles 1000 / 1200 Tr/mn', '', 'self'); l8 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l8.additem('MVSI série E - EEx-e', 'http://vibrateur.free.fr/cadre_MVSI_8E.htm', 'blank'); l8.additem('MVSI série D - DIP', 'http://vibrateur.free.fr/cadre_MVSI_8D.htm', 'blank'); l8.additem('MVSI série C - CSA', 'http://vibrateur.free.fr/cadre_MVSI_8C.htm', 'blank'); l4.addlist(l8, '8 Pôles 750 / 900 Tr/mn', '', 'self'); l2.addlist(l4, 'Série MVSI S90 EEx-e / DIP / CSA', '', 'self'); l9 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l9.additem('2 Pôles 3000 / 3600 Tr/mn', 'http://vibrateur.free.fr/cadre_CDX_2.htm', 'blank'); l9.additem('4 Pôles 1500 / 1800 Tr/mn', 'http://vibrateur.free.fr/cadre_CDX_4.htm', 'blank'); l9.additem('6 Pôles 1000 / 1200 Tr/mn', 'http://vibrateur.free.fr/cadre_CDX_6.htm', 'blank'); l9.additem('8 Pôles 750 / 900 Tr/mn', 'http://vibrateur.free.fr/cadre_CDX_8.htm', 'blank'); l2.addlist(l9, 'Série CDX - Antidéflagrants', '', 'self'); l10 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l10.additem('2 Pôles 3000 / 3600 Tr/mn', 'http://vibrateur.free.fr/cadre_MVSS_2.htm', 'blank'); l10.additem('4 Pôles 1500 / 1800 Tr/mn', 'http://vibrateur.free.fr/cadre_MVSS_4.htm', 'blank'); l10.additem('6 Pôles 1000 / 1200 Tr/mn', 'http://vibrateur.free.fr/cadre_MVSS_6.htm', 'blank'); l10.additem('8 Pôles 750 / 900 Tr/mn', 'http://vibrateur.free.fr/cadre_MVSS_8.htm', 'blank'); l2.addlist(l10, 'Série MVSS Inox', '', 'self'); l2.additem('Série ITV - Haute Fréquence', 'http://vibrateur.free.fr/cadre_ITV.htm', 'blank'); l11 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l11.additem('2 Pôles 3000 / 3600 Tr/mn', 'http://vibrateur.free.fr/cadre_MTF_2.htm', 'blank'); l11.additem('4 Pôles 1500 / 1800 Tr/mn', 'http://vibrateur.free.fr/cadre_MTF_4.htm', 'blank'); l2.addlist(l11, 'Série MTF à Brides', '', 'self'); l2.additem('Série MVB/FLC à Brides', 'http://vibrateur.free.fr/cadre_MVB%20FLC.htm', 'blank'); l2.additem('Série VB', 'http://vibrateur.free.fr/cadre_VB.htm', 'blank'); l2.additem('Série MVCC', 'http://vibrateur.free.fr/cadre_MVCC.htm', 'blank'); l2.additem('Série MICRO', 'http://vibrateur.free.fr/cadre_MICRO.htm', 'blank'); l1.addlist(l2, 'Vibrateurs Electriques', '', 'self'); l12 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', '#F3BC4E', 0, 'white'); l12.additem('Turbo AFP', 'http://vibrateur.free.fr/cadre_turbo_AFP.htm', 'blank'); l12.additem('Série à Piston Frappeur', 'http://vibrateur.free.fr/cadre_CFP.htm', 'blank'); l12.additem('Série à Bille - K', 'http://vibrateur.free.fr/cadre_bille.htm', 'blank'); l13 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l13.additem('Série R', 'http://vibrateur.free.fr/cadre_rouleau_R.htm', 'blank'); l13.additem('Série DAR', 'http://vibrateur.free.fr/cadre_rouleau_DAR.htm', 'blank'); l12.addlist(l13, 'Série à Rouleau', '', 'self'); l14 = new namosw_list(layer, false, 209, 17, 'Arial', '1', 'black', 'silver', 0, 'white'); l14.additem('Série GT', 'http://vibrateur.free.fr/cadre_turbine_GT.htm', 'blank'); l14.additem('Série T', 'http://vibrateur.free.fr/cadre_turbine_T.htm', 'blank'); l12.addlist(l14, 'Série à Turbine', '', 'self'); l1.addlist(l12, 'Vibrateurs Pneumatiques', '', 'self'); l1.additem('Table Vibrante', 'http://vibrateur.free.fr/cadre_table_CTV.htm', 'blank'); l1.additem('Variation de Fréquence', 'http://vibrateur.free.fr/cadre_variateur_CVE.htm', 'blank'); l1.additem('Ressorts Type AMC', 'http://vibrateur.free.fr/cadre_AMC.htm', 'blank'); l1.additem('Accessoires', 'http://vibrateur.free.fr/cadre_accessoires.htm', 'blank'); l1.additem('Formulaire Renseignements', 'Formulaire.htm', 'blank'); l1.make(0, 14); } function namosw_ns_resize() { window.history.go(0); } // -->

 

AC TALAVERA Patrick

ACBMV  de  M. CASADIO Bruno

TEL : 04 86 57 30 76 / FAX : 04 69 96 05 81


 

 

Vibreur Industriel

      La gamme de vibreurs proposée est composée de nombreux modèles, au service de tous les domaines industriels. Ils sont monophasés, triphasés, à haute fréquence, à variation de vitesse, à courant continu, anti-déflagrants...Atex... et sont également pneumatiques.

Certification : CSA - CE - CSA - DIP - EEx-e - EEx-d - IP66-7 - ATEX   

Tous ces vibreurs bénéficient d'une construction soignée et rigoureusement controlée : chaque appareil est essayé et tropicalisé d'origine.

Toutes les piéces d'un vibreur en mouvement sont surdimensionnées afin d'accroitre leur longivité.

Les masses excentriques permettent le réglage de l'intensité vibrante.

 

un compteur pour votre site