"); //alert(ddclass); } } function Tab(Nav, Link) { this.Nav = Nav; this.Link = Link; } function buildMain(old_array) { var new_pair; var new_name; var new_value; currentLoc = old_array[0].currentLoc; new_pair = old_array[0].Link1.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; main_array[0] = new Tab(new_name,new_value); new_pair = old_array[0].Link2.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; main_array[1] = new Tab(new_name,new_value); new_pair = old_array[0].Link3.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; main_array[2] = new Tab(new_name,new_value); new_pair = old_array[0].Link4.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; main_array[3] = new Tab(new_name,new_value); new_pair = old_array[0].Link5.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; main_array[4] = new Tab(new_name,new_value); new_pair = old_array[0].Link6.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; main_array[5] = new Tab(new_name,new_value); mainnav = main_array; } function buildSubnav (sub_array) { dropdown_array = sub_array.DDarray.split("|"); var new_pair; var new_name; var new_value; var new_array = new Array(20); new_pair = sub_array.Link1.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; new_array[1]= new Tab(new_name, new_value); new_pair = sub_array.Link2.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; new_array[2]= new Tab(new_name, new_value); new_pair = sub_array.Link3.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; new_array[3]= new Tab(new_name, new_value); new_pair = sub_array.Link4.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; new_array[4]= new Tab(new_name, new_value); new_pair = sub_array.Link5.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; new_array[5]= new Tab(new_name, new_value); new_pair = sub_array.Link6.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; new_array[6]= new Tab(new_name, new_value); new_pair = sub_array.Link7.split("|"); new_name=new_pair[0]; new_value=new_pair[1]; new_array[7]= new Tab(new_name, new_value); subnav=new_array; } function Headers(currentLoc, Link1, Link2, Link3, Link4, Link5, Link6) { this.currentLoc = currentLoc; this.Link1 = Link1; this.Link2 = Link2; this.Link3 = Link3; this.Link4 = Link4; this.Link5 = Link5; this.Link6 = Link6; } function SubNav(DDarray, Link1, Link2, Link3, Link4, Link5, Link6, Link7) { this.DDarray = DDarray; this.Link1 = Link1; this.Link2 = Link2; this.Link3 = Link3; this.Link4 = Link4; this.Link5 = Link5; this.Link6 = Link6; this.Link7 = Link7; } function ddMenu(option1, option2, option3, option4, option5, option6, option7,option8) { this.option1 = option1; this.option2 = option2; this.option3 = option3; this.option4 = option4; this.option5 = option5; this.option6 = option6; this.option7 = option7; // ************************************* // Added by Matt Darnall (10-8-04) // to add support for more than 7 items // in a dd menu // ************************************* if(option8 != null){ this.option8 = option8; } } var isDHTML = 0; var isID = 0; var isAll = 0; var isLayers = 0; if (document.getElementById) {isID = 1; isDHTML = 1;} else { if (document.all) {isAll = 1; isDHTML = 1;} else { browserVersion = parseInt(navigator.appVersion); if ((navigator.appName.indexOf('Netscape') != -1) && (browserVersion == 4)) {isLayers = 1; isDHTML = 1;} }} function findDOM(objectID,withStyle) { if (withStyle == 1) { if (isID) { return (document.getElementById(objectID).style) ; } else { if (isAll) { return (document.all[objectID].style); } else { if (isLayers) { return (document.layers[objectID]); } };} } else { if (isID) { return (document.getElementById(objectID)) ; } else { if (isAll) { return (document.all[objectID]); } else { if (isLayers) { return (document.layers[objectID]); } };} } } var menuTop = 0; var menuLeft = 0; var domSMenu = null; var oldDomSMenu = null; var t = 0; var lDelay = 3; var lCount = 0; var pause = 100; function popMenu(menuNum){ if (isDHTML) { ///// Sets the previous menu's visibility to hidden t = 2; if (oldDomSMenu) { oldDomSMenu.visibility = 'hidden'; oldDomSMenu.zIndex = '0'; t = 2; lCount = 0; } ///// Defines the DOMs of the menu objects var idMenu = 'ddMenu'; var domMenu = findDOM(idMenu,0); var idMenuOpt = 'menuHead' + menuNum; var domMenuOpt = findDOM(idMenuOpt,0); var idSMenu = 'menu' + menuNum; var domSMenu = findDOM(idSMenu,1); ///// Defines the positions of the sub-menus if (isID || isAll) { var menuLeft = (domMenuOpt.offsetLeft)/* offset left +5*/; var menuTop =(domMenu.offsetHeight) + 4; } if (isLayers) { var menuLeft = document.layers[idMenu].layers[idMenuOpt].pageX - 5; var menuTop = domMenu.pageY + domMenu.clip.height - 5; } ///// Positions and shows the menu if (oldDomSMenu != domSMenu) { domSMenu.left = menuLeft; domSMenu.top = menuTop; domSMenu.visibility = 'visible'; domSMenu.zIndex = '100'; oldDomSMenu = domSMenu; } ///// Resets oldDom if it is the same as the current DOM else { oldDomSMenu = null; } } ////// Returns a 'null' value for non-DHTML Browsers else { return null; } } function delayHide() { ///// Checks to see if there is a menu showing and whether ///// the global variable 't' has been set to 0 if ((oldDomSMenu) && (t == 0)) { ///// Hides the old menu, resets menu conditions, ///// and stops the function running oldDomSMenu.visibility = 'hidden'; oldDomSMenu.zIndex = '0'; oldDomSMenu = null; lCount = 0; return false; } ///// Interupts the function if another menu is opened if (t == 2) { lCount = 0; return false; } ///// Repeats the function adding 1 to lCount each time until ///// lCount is equal to lDelay and then sets 't' to 0 so that ///// the menu will hide when it runs again if (t == 1) { lCount = lCount + 1; if (lDelay <= lCount) { t = 0; } if (lDelay >= lCount) { setTimeout('delayHide(' + t + ')',pause); } } } //-->
InFocus® ScreenPlay
Optimisé pour le home cinéma.
Contrairement aux projecteurs professionnels classiques, les projecteurs ScreenPlay bénéficient d'une qualité vidéo optimisée. Vous profitez ainsi d'une expérience digne du cinéma, la plus souple actuellement disponible, tout simplement.
En savoir plus.

All Buying Options
ScreenPlay 5000
Photos: 1 2 3 4
Overview Benefits Specifications
Accessories Downloads
'; overview+='
Des images dun réalisme couper le souffle
Pour les cinéphiles à la recherche dune expérience sans précédent, le ScreenPlay® 5000 dInFocus® est un véritable projecteur haute définition dune résolution native de 720p. Cela signifie 720 lignes qui définissent pleinement images sportives et films, produisant des résultats plus grands que nature. Le système de projection ScreenPlay® 5000 dispose par ailleurs de trois écrans 16:9 à cristaux liquides et matrice active polysilicone haute température de 0,7 pouce, mais passons sur les détails. En un mot, vous vivez pleinement toutes les émotions de vos films, sports et jeux vidéo, confortablement installé dans votre canapé. Et le prix du projecteur ScreenPlay®5000 est si dérisoire quil en devient presque aussi incroyable que son image. Presque.
'; overview+='

'; overview+='
'; /* Benefits DHTML Scroll Content */ var benefits='
'; benefits+='

Le réalisme à son paroxysme — Avec une image de 3 mètres, vous êtes aux premières loges, où que vous vous trouviez dans votre salon. Sa luminosité éclatante de 1100 lumens et le rapport de contraste époustouflant de 1200:1 confèrent à vos programmes sportifs ou émissions télévisées, films et jeux vidéo une netteté et un contraste qui éblouiront tout le monde.

'; benefits+='

Le nec plus ultra de votre système de divertissements personnels — Une conception intuitive, des commandes et des branchements daccès simples, qui vous permettent de connecter rapidement et simultanément votre lecteur de DVD, magnétoscope, système de réception satellite ou câblé, console de jeux, caméscope, et même votre PC.

'; benefits+='

Portable, flexible, attirant — Grâce à son poids ultra léger, le projecteur ScreenPlay® 5000 dInFocus® offre une portabilité et une installation très faciles. La correction instantanée de la distorsion dimages, horizontale et verticale, vous permet dinstaller le projecteur au plafond ou de le placer simplement sur votre table basse pour bénéficier dimages exceptionnelles.

'; benefits+='

'; benefits+='
'; /* Specifications DHTML Scroll Content */ var specifications=''; specifications+=''; specifications+=''; //SPEC SECTION specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; //END SPEC SECTION //SPEC SECTION specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; //END SPEC SECTION //SPEC SECTION specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; //END SPEC SECTION //SPEC SECTION specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; //END SPEC SECTION specifications+='
COMPATIBILITÉ
Vidéo: Composante HDTV et RVB (720p, 1035i, 1080i) DVI/HDCP pour vidéo numérique et vidéo numérique cryptée. Composante EDTV (480p, 576p à balayage progressif), vidéo composante, composite et standard S-Video (480i, 576i, 576i Péritel RVB avec adaptateur), NTSC, NTSC M 4.43, PAL : B, G, H, I, M, N ; SECAM : M.
Ordinateur: PC ou Macintosh® numérique et analogique, résolution 1280 x 1024 grâce au redimensionnement intelligent
Communication: RS232 and USB
ENTRÉES ET SORTIES
1 - DVI (M1): composante HDTV RVB, HDTV et DVI (Digital Visual Interface) avec décodeur HDCP, ordinateur et USB, HDMI via adaptateur disponible
1 - Composante (RCA): HDTV, EDTV (progressive) et composante vidéo TV standard (entrelacée)
1 - VESA (HD15): composante HDTV RVB, HDTV et ordinateur
1 - S-Video: Vidéo TV standard
1 - Composite (RCA):
Vidéo TV standard
1 - Prises stéréo RCA:
entrée audio G/D
1 - D-sub mâle 9 broches:
RS-232
1 - Mini-jack de 3,5 mm :
abaissement décran12v
AFFICHAGE
Système de projection:
Matrice active TFT polysilicone haute température de 0,7 pouce avec MLA (3 - une par R, V, B)
Résolution : 1280 x 720 (16:9)
Objectif de projection:
Tout en verre. F/1.9 grand angle, F2.2 télé., 26 - 31 mm de longueur focale
Rapport de contraste calibré:
1200:1 full on/full off
Lampe: 150 W UHP, 2000 heures
Luminosité optimisée pour vidéo:

1 100 lumens ANSI maximum
Modes de projection: frontal/rétroprojection/plafond
Distance de focalisation:
1,5 m à linfini
Correction de la distorsion:
numérique, jusquà +/- 20° vertical, +/- 9° horizontal
Luminosité SMPTE: jusquà 3,2 m de large, écran 16:9
Rapport de projection:
1,65:1 - 1,98:1 (distance/largeur)
CARACTÉRISTIQUES
PRINCIPALES
Dimensions du produit: 10,3 cm (H) x 29,4 cm (l) x 26,0 cm (L)
Poids: 3,4 kg
Alimentation: 100 V - 240 V à 50 - 60 Hz
Température de fonctionnement:
5 à 35 °C au niveau de la mer (0 à 10 000 m daltitude)
Conforme aux normes:
UL, c-Ul,TUV GS, GOST, C-Tick, NOM, IRAM, FCC B, CISPR22/EN55022, EN 55024/CISPR 24, CB certifié conformément à IEC60950 :1999/EN60950:2000, P(SE), MIC, TUV GS, Ul & cUL, GOST
Accessoires fournis: cordon dalimentation, télécommande Home Entertainment, câble S-Video, câble AV, câble ordinateur, manuel de lutilisateur (anglais, français, allemand, espagnol, italien, norvégien), carte Quick Start
Garantie: 2 ans pièces et main-douvre ; 1 an accessoires
Garantie de la lampe:
90 jours ou 500 heures
Menus à lécran: en anglais, espagnol, français, allemand, japonais, coréen, portugais, italien, norvégien,russe, chinois (traditionnel), chinois (simplifié)
'; /* Accessories DHTML Scroll Content */ var accessories='
'; accessories+='Lamps'; accessories+='
Lampe InFocus pour ScreenPlay 5000'; accessories+='

Cables'; accessories+='
Adaptateur M1-DVI'; accessories+='
Adaptateur M1-HDMI'; accessories+='
Câble M1-DVI de 10 m'; accessories+='
Adaptateur M1-composante'; accessories+='
Cordon dalimentation de 1 m'; accessories+='
Tube dextension (60 à 90 cm)

'; accessories+='

Mounts'; accessories+='
Montage au plafond universel'; accessories+='

'; /* Downloads DHTML Scroll Content */ var downloads='
Fiche technique
'; createScroll('/i/products/screenplay/','prod_gradient2.jpg','prod_scrollbar.jpg','prod_scrollbar_off.jpg','prod_scroll_bullet.gif',16,16,335,281,258,469); //-->
Calculate your image size
   
Conditions légales d'utilisation Contactez-nous Plan du site
Copyright © 1999-2005  InFocus Corporation.
Tous droits réservés.