"); //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. So you get the smoothest, most film-like experience available. Period.
Learn more.
InFocus® ScreenPlay® 777. Breathtaking video. Flawless images. Extraordinary value.
All Buying Options
ScreenPlay 777
Photos: 1 2 3
Overview Benefits Specifications
Accessories Downloads
'; /* Benefits DHTML Scroll Content */ var benefits='
'; benefits+='Amazing color and brightness to the last pixel
Three DMDs, the latest high-definition Mustang HD2 DMDs deliver Native 1280 x 720 resolution creates high-definition perfection from any HD source'; benefits+='

Crisp, pop-off-the-screen images
Magnificent 3000:1 video contrast ratio displays against true blacks and detailed grayscale

'; benefits+='

Stunningly brilliant
2000 video-optimized lumens yields a dramatic SMPTE (cinema standard) brightness up to massive 15 foot (4.57 meter) wide screens

'; benefits+='

Immaculate image
The enhanced DCDi® video deinterlacer from Faroudja® delivers progressive scan video with enhanced noise reducers, color enhancers and a unique 2:2 pull down with virtually non-existent scan lines and no discernable flicker

'; benefits+='

Creates the truest colors imaginable
D65 cinematic color mastering standards engineered on ScreenPlays solid platform of innovation

'; benefits+='

Simple to use as the rest of the room
Equipped with the intuitive menu system, electronics and connectivity found in all award-winning ScreenPlay projectors yielding an image that CEDIA voted better than any plasma, better than any flat-panel LCD, and better than any other projector

'; 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+=''; 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+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; specifications+=''; //END SPEC SECTION specifications+='
Download the data sheet (.pdf)

COMPATIBILITY
Video: Component and RGB HDTV (720p, 1035i, 1080i, 1080p-24Hz), 24p. DVI with HDCP for digital video and encrypted digital video. Component EDTV (480p, 576p progressive scan), Component, Composite, S-Video and standard video (480i, 576i, 576i RGB SCART with adapter, NTSC, NTSC M 4.43, PAL: B, G, H, I, M, N; SECAM: M) including 60Hz to 48Hz conversion of NTSC film-based content

Computer:

Digital and analog PC, Macintosh®, 1280 x 1024 resolution through intelligent resizing

Communication:

USB and RS-232
INPUTS & OUTPUTS
2 — Component (RCA/BNC):
HDTV, EDTV, and Standard TV component; 3 x gold plated RCA, 3 x 75 BNC
1 — Component (D5):
HDTV, EDTV, standard TV video, and RGB SCART with adapter
2 — S-Video: Standard TV Video
1 — Composite (RCA):
Standard TV Video
1 — DVI (M1-DA): HDTV RGB, HDTV Component, Digital Visual Interface (DVI) with HDCP decryption, computer, and USB, HDMI via available adapter
1 — HD15 VESA: HDTV RGB, HDTV component, and computer
4 — IR sensors: IR remote control
1 — 9-pin Dsub Male:
RS-232
1 — 3.5mm Mini-Jack:
IR Repeater (Niles/Xantech compatible)
2 — 3.5mm Mini-Jack:
1-12v screen-drop, 1-12v 4:3 aspect "curtains"
DISPLAY
Projection System: TI HD2 12° LVDS DMDs
Resolution: 3 chip DLP 1280 x 720 (16:9) 720p native, Red, Green, Blue
Color Wheel: none
RGB Enhanced Color:
6500°K +/-500°, D65 calibrated for video performance
Motorized Lens Shift:
Vertical: -50% to +120%; Horizontal: +/- 20%
Projection Lens Options:
0.69:1 Power focus, no zoom, no lens shift
1.20 - 1.44:1 Power zoom and focus, 1.20x zoom
1.44 - 1.80:1 Power zoom and focus, 1.25x zoom
1.80 - 2.40:1 Power zoom and focus, 1.33x zoom
2.40 - 3.60:1 Power zoom and focus, 1.50x zoom
3.60 - 5.60:1 Power zoom and focus, 1.55x zoom
Calibrated Contrast Ratio:
3000:1 full on/full off
Lamp: 250-Watt High Pressure Mercury (1500 hours) with LampSyncT stability pulse
Video Optimized Lumens:
2000 ANSI max
Modes: Front/rear/ceiling mode
Focusing Distance: 5/ 1.5m to infinity
Keystone Correction:
Digital, up to +/- 15° Vertical
SMPTE Brightness: Up to 15 feet/ 4.57m wide, 16:9 screen
GENERAL
Size: 28.4"(L) x 8.5"(H) x 23.7"(W) (722mm L x 217mm H x 603mm W)
Weight: 44.4lbs (20.2 kg)
Audible Noise: 30dBA at ambient sea level; with no pure tones
System Software: Flash utility via the DVI connector
Power Supply: 100V - 240V at 50 - 60 Hz
Max Power Consumption:
430W
Standby Power: 1W
Power Input: IEC-320-C14 receptacle
Operating Temerature:
10° - 35° C at sea level (0 - 10,000) 50° - 95° F
Ceiling Mount Rating:
UL 5V
Conformances: UL, CSA, TUV, C Tick, GOST, IRAM, S-JQA, FCC B, EN55022, ICES-003
Ships Standard with:
Power cord, home entertainment remote, integrated cable cover
Warranty: Two-year standard warranty on parts and labor, one-year on accessories
Lamp Warranty: 90 days or 500 hours
Menu Languages: English, Spanish, French, German, Japanese, Korea, Portuguese, Italian, Norwegian, Russian, Chinese Simple,Chinese Traditional
'; /* Accessories DHTML Scroll Content */ var accessories='
'; accessories+='Lamps'; accessories+='
Spare Lamp'; accessories+='

Cables'; accessories+='
10m M1 to DVI cable'; accessories+='
M1 to DVI adapter'; accessories+='
M1 to HDMI adapter'; accessories+='
M1 to component adapter'; accessories+='
1M Power cord (US only)

'; accessories+='

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

'; /* Downloads DHTML Scroll Content */ var downloads='
777 Service Page
Data Sheet (182K .pdf)
'; createScroll('/i/products/screenplay/','prod_gradient2.jpg','prod_scrollbar.jpg','prod_scrollbar_off.jpg','prod_scroll_bullet_grn.gif',16,16,335,281,258,469); //-->
Calculate your image size
Industry Buzz


What is DLP?
Legal Use Contact Us Site Map
Copyright © 1999-2005 InFocus Corporation.
All Rights Reserved.