"); //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®
Home Optimized.
Unlike typical business projectors, ScreenPlay projectors are optimized for video. Learn more.
ScreenPlay 4805. Get bigger-than-big images for watching TV and DVDs, playing games, and more.
 
All Buying Options
ScreenPlay 4800
Photos: 1 2 3 4
Overview Benefits Specifications
Accessories Downloads
'; /* Benefits DHTML Scroll Content */ var benefits='
'; benefits+='

Stunning Images Come from Attention to Detail ? The ScreenPlay 4805 uses native 16:9 DarkChip2T DLPT technology from Texas Instruments, the only display solution that creates an entirely digital connection between a source and the screen in front of you.

'; benefits+='

Academy-Award-Winning Enhanced Faroudja DCDi Video Processing ? The images are produced with ultimate fidelity: clear and artifact-free, without those jagged lines you see on some large-format displays.

'; benefits+='

Incredible Movies, Games, TV and More ? Project everything in amazing colour, size and clarity. Plug in any type of game box and jump into the action, show off your vacation photos from your digital camera or camcorder, or enjoy front-row seating for your favourite team when watching sporting events as if you where right there on location.

'; benefits+='

Lightweight Package ? At 7.8 lbs (3.5 kg) the ScreenPlay 4805 is light enough to take to a friend’s house - small enough to carry under your arm.

'; benefits+='

'; benefits+='
'; /* Specifications DHTML Scroll Content */ var specifications=''; specifications+=''; specifications+=''; //SPEC SECTION specifications+='' specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; //END SPEC SECTION //SPEC SECTION 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+=''; specifications+='' specifications+=''; //END SPEC SECTION //SPEC SECTION specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; //END SPEC SECTION specifications+='
Download the data sheet (.pdf)

COMPATIBILITY
Communication: USB
Computer: Digital and analog PC, Macintosh®, up to 1024x768 resolution through intelligent resizing
Video: Component and RGB HDTV (720p, 1035i, 1080i). DVI with HDCP for digital video and encrypted digital video. Component EDTV (480p, 576p progressive scan), Component, Composite and S-Video standard TV video (480i, 576i, composite SCART with adapter, NTSC, NTSC M 4.43, PAL: B, G, H, I, M, N; SECAM: M.)
INPUTS & OUTPUTS
1 ? Component (RCA): HDTV, EDTV (progressive), and Standard TV component video (interlaced)
1 ? S-Video: Standard Video
1 ? Composite (RCA): Standard Video
1 ? Stereo RCA jacks: L&R Audio input
1 ? DVI (M1): HDTV RGB, HDTV Component, Digital Visual Interface (DVI) with HDCP decryption, computer,and USB, HDMI via available adapter
1 ? 3.5mm Stereo Mini-Jack: Audio output (variable)
1 ? 3.5mm Mini-Jack: 12v screen-drop
DISPLAY
Projection System: New TI DarkChip2T 480p 12° DDR DMD
Resolution: 854 x 480 (16:9)
Projection Lens: All glass. F/2.4, 21-25mm focal length
colour Wheel: Proprietary, 6-segment colour wheel, (6500K colour temperature), D65 colour calibration
Calibrated Contrast Ratio: 2000:1 full on/full off
Lamp (dual mode): 160/200 watt SHP, 3000 hour average lifetime
Video Optimized Lumens: 750 ANSI max
Modes: Front/rear/ceiling mode
Focusing Distance: 5/ 1.5m to
Keystone Correction: Digital, up to +/- 20° Vertical
SMPTE Brightness: Up to 9 ( 2.74m) wide, 16:9 screen
Throw Ratio: 1.77:1 - 2.13:1 (distance/width)
Offset Ratio: 127.8%
GENERAL
Conformances: UL, c-Ul, TUV GS, GOST, C-Tick, NOM, IRAM, FCC B, CISPR22/EN55022, EN 55024/CISPR 24, CB certified according to IEC60950/EN60950; 1997, P(SE), MIC
Lamp Warranty: 90 days or 500 hours
Menu Languages: English, Spanish, French, German, Japanese, Korean, Portuguese, Italian, Norwegian, Russian, Chinese Simple, Chinese Traditional
Operating Temperature: 5° - 40° C at sea level (0 - 10,000?) ; 41° - 104° F
Power Supply: 100V - 240V at 50 - 60 Hz
Product Dimensions: 4.2" (H) x 9.8" (W) x 12.5" (L); 10.6cm x 24.9cm x 31.8cm
Ships with: Power cord, home entertainment remote, S-Video cable, AV cable (3 RCA to 3 RCA), computer cable (M1-A), printed user’s guide, quick start card.
Warranty: 2 years part and labor, 1 year accessories
Weight: 6.8 lbs/3.1 kg
'; /* Accessories DHTML Scroll Content */ var accessories='
'; accessories+='Lamps'; accessories+='
Lamp for ScreenPlay 4805'; accessories+='

Cables'; accessories+='
Power cord, 1m'; accessories+='
10m M1 to DVI cable'; accessories+='
M1 to DVI adapter'; accessories+='
M1 to HDMI adapter'; accessories+='
M1 to component adapter

'; accessories+='

Mounts'; accessories+='
Ceiling Mount'; accessories+='

'; /* Downloads DHTML Scroll Content */ var downloads='
Data Sheet
Self-paced learning guide
'; 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
Industry Buzz
   
Legal Use Contact Us Site Map
Copyright © 1999-2005 InFocus Corporation.
All Rights Reserved.