"); //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
¼ÒÓÃ×îÓÅ»¯¡£
ScreenPlay ͶӰ»úÓëÓÚÆÕͨÉÌÓÃͶӰ»úµÄ²»Í¬Ö®´¦ÔÚÓÚ£¬ËüʵÏÖÁËÊÓƵ×îÓÅ»¯¡£´ø¸øÄú¼«ÎªÁ÷³©¡¢½üºõµçÓ°µÄÃÀºÃÌåÑé¡£Á˽â¸ü¶àÐÅÏ¢.
ScreenPlay 5000. ÁîÈ˾ªÌ¾µÄͼÏñ³ß´çºÍÇåÎú¶È¡£
ScreenPlay 5000
Photos: 1 2 3 4
Overview Benefits Specifications
Accessories Downloads
'; overview+='
ÏíÊܱÈÏÖʵÉú»î¿´ÆðÀ´¸üÃÀÃîµÄ»­Ãæ
¶ÔÓÚÄÇЩ׷ÇóÍêÃÀÊÓ¾õÌåÑéµÄÊÓƵ°®ºÃÕßÀ´Ëµ£¬InFocus® ScreenPlay® 5000 µÄͶӰ¾ø¶ÔÊDz»ÕÛ²»¿ÛµÄ 720p ¸ßÇåÎú¶È¡£Õâ¾ÍÒâζ×Å£¬µ±ÄúÊÕ¿´¼¤ÁÒµÄÌåÓý±ÈÈüºÍ¾«²ÊµÄµçӰʱ£¬ÇåÎú¶È´ïµ½ÁË 720 ÐУ¬¼¸ºõÊǽüÔÚåë³ß¡£¶øÇÒ£¬ScreenPlay® 5000 ͶӰϵͳ»¹²ÉÓÃÁËÒýÒÔΪºÀµÄ16:9 µÄÆÁÄ»£¬3 x 0.7" µÄ¸ßζྦྷ¹èÓÐÔ´¾ØÕó LCD ÏÔʾÆ÷£¬²»¹ýÄúÎÞÐèµ£ÐÄÕâЩϸ½Ú¡£ÕâÒâζ×Å£¬ÄúÖ»ÐèÒªÊæ·þµØ¿¿ÔÚɳ·¢ÉÏ£¬¼´¿É¹ÛÉÍ»­Ã漫Æä±ÆÕæµÄµçÓ°¡¢Ô˶¯±ÈÈüºÍÓÎÏ·ÁË¡£²¢ÇÒ ScreenPlay® 5000 ¼Û¸ñ·Ç³£ºÏÀí£¬ÓëËü׿¾øµÄ»­ÃæÒ»Ñù£¬ËüµÄ¼Û¸ñҲͬÑùÁîÄú·ÖÍ⾪ϲ£¬ºÀÎÞÒÉÎÊ£¡
'; overview+='

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


½ö½ö½«Éú»î·Å´óÁ˶øÒÑ ? ÔÚ 11 Ó¢³ß¿íµÄ»­ÃæÇ°£¬Äú·¿¼äµÄÈκÎ×ùλ¶¼Êǹۿ´»­ÃæµÄ×î¼ÑλÖá£ÏëÏóһϣ¬ÄúµÄͶӰ»úÓµÓÐÏÊÃ÷µÄ 1100 Á÷Ã÷¡¢¾ø¼ÑµÄ 1200:1 ¶Ô±È¶È£¬ÏÊ»îÉú¶¯µÄÌåÓýÔ˶¯¡¢µçÊÓ½ÚÄ¿¡¢µçÓ°ºÍÓÎÏ·Ó°Ïñ½«ÆËÃæ¶øÀ´¡£

'; benefits+='

¼ÒÍ¥ÓéÀÖϵͳÖеÄÒ»¿ÅÃ÷Öé ? Ö±¹ÛµÄÉè¼Æ¡¢¿ØÖÆϵͳºÍÒ×ÓÚ²Ù×÷µÄÁ¬½Óϵͳ¿ÉÒÔÈÃÄúѸËÙµØͬʱ½«ËüÓë DVD ²¥·ÅÆ÷¡¢VCR¡¢µçÀÂ/ÎÀÐǽÓÊÕÆ÷¡¢ÓÎÏ·»ú¡¢±ãЯÉãÏñ»úÒÔ¼° PC »úÁ¬Í¨¡£

'; benefits+='

ÇáÇÉ¡¢Áé»î¡¢ÁîÈËÇãĽ ? InFocus® ScreenPlay® 5000 ÇáÇɵÄÉè¼Æʹ֮Ò×ÓÚ°²×°£¬Ð¯´ø·½±ã¡£¼´Ê±µÄÌÝÐνÃÕý½áºÏˮƽµ÷ÕûºÍ´¹Ö±µ÷Õû£¬Ê¹ÄúÎÞÂÛÊǽ«Í¶Ó°»ú°²×°ÔÚÌ컨°åÉÏ£¬»¹ÊÇ·ÅÔÚÄúµÄ¿§·È×ÀÉÏ£¬¶¼»áµÃµ½ÁîÄú¾ªÌ¾µÄͼÏñЧ¹û¡£

'; 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+='
¼æÈÝÐÔ
ÊÓƵ£º ·ÖÁ¿ºÍ RGB HDTV£¨720p¡¢1035i¡¢1080i£© ·ûºÏ HDCP µÄ DVI£¬ÓÃÓÚÊý×ÖÊÓƵºÍ¼ÓÃÜÊý×ÖÊÓƵ¡£·ÖÁ¿ EDTV£¨480p¡¢576p ÖðÐÐɨÃ裩£¬ ·ÖÁ¿¡¢¸´ºÏÓë S-Video ±ê×¼ÊÓƵ [480i¡¢576i¡¢576i RGB SCART£¨´øÓÐÊÊÅäÆ÷£©¡¢NTSC¡¢NTSC M 4.43£¬PAL£ºB¡¢G¡¢H¡¢I¡¢M¡¢N£¬SECAM£ºM.
¼ÆËã»ú£º PC¡¢Macintosh® Êý×ÖºÍÄ£Äâ½Ó¿Ú£¬1280 x 1024 ·Ö ±æÂÊ£¬ÍêÈ«ÖÇÄÜ»¯³ß´çµ÷Õû
ͨÐÅ£º RS232 ºÍ USB
ÊäÈëºÍÊä³ö
1 - DVI (M1): HDTV RGB¡¢HDTV ·ÖÁ¿¡¢Ê¹Óà HDCP ½âÃܵÄÊý×Ö¿ÉÊÓ»¯½çÃæ (DVI)¡¢¼ÆËã»úºÍ²ÉÓÃÊʵ±ÊÊÅäÆ÷µÄ USB Óë HDMI
1 - ·ÖÁ¿ (RCA)£º HDTV¡¢EDTV£¨ÖðÐÐɨÃ裩ºÍ±ê×¼ TV ·ÖÁ¿ÊÓƵ£¨¸ôÐÐɨÃ裩
1 - VESA (HD15): HDTV RGB¡¢HDTV ·ÖÁ¿ºÍ¼ÆËã»ú
1 - S-Video: ±ê×¼ TV ÊÓƵ
1 - ¸´ºÏ (RCA)£º
±ê×¼ TV ÊÓƵ
1 - Á¢ÌåÉù RCA ²å¿Ú£º
L&R ÒôƵÊäÈë
1 - 9 Õë Dsub ²åÍ·£º
RS-232
1 - 3.5mm ΢ÐͲå¿Ú£º
12v À­Ä»Ê½
ÏÔʾ
ͶӰϵͳ£º ¾ßÓÐMLAµÄ 3 x 0.7¡±¿íµÄ¸ßζྦྷ¹è TFT ÓÐÔ´¾ØÕó ¨C one per R,G, B
·Ö±æÂÊ£º 1280 x 720 (16:9)
ͶӰ¾µÍ·£º È«²£Á§¡£F/1.9 ¿í¡¢F2.2 tele¡¢26 - 31mm ½¹¾à
У׼¶Ô±È¶È£º
1200:1£¬È«²¿´ò¿ª/È«²¿¹Ø±Õ
µÆ: 150 Íß³¬¸ß¹¦ÂÊ/2000 Сʱ*
ÊÓƵ×îÓÅ»¯Á÷Ã÷£º
×î´ó 1100 ANSI
ģʽ£º ÕýͶ/±³Í¶/µõװͶӰģʽ
½¹¾à£º 5’/ 1.5m µ½ÎÞÇî
ÌÝÐÎУÕý£º ÊýÂ룬×ÝÏò×î¶à +/-20¡ã£¬ºáÏò +/- 9¡ã
SMPTE ÁÁ¶È£º ×î¶à 126¡±/ 3.2m ¿íÒøÄ»¡¢16:9 ÆÁÄ»
ͶÉä±È£º 1.65:1 -1.98:1£¨¾àÀë/¿í¶È£©
³£¹æ
²úÆ·³ß´ç£º 4.0¡±£¨¸ß£©x 11.5¡±£¨¿í£©x 10.2¡±£¨³¤£©£»10.3cm x29.4cm x 26.0cm
ÖØÁ¿£º 7.5 lbs/3.4 kg
µçÔ´£º 100V -240V£¬50 -60 Hz
¹¤×÷ζȣº ÒÔº£Æ½ÃæΪ»ù×¼ (0 -10,000¡¯)£¬ÉãÊÏ 5¡ã -35¡ã »ò»ªÊÏ 50¡ã -95¡ã
Ëù·ûºÏ±ê×¼£º UL¡¢c-Ul¡¢TUV GS¡¢ GOST¡¢C-Tick¡¢NOM¡¢IRAM¡¢FCC B¡¢CISPR22/EN55022¡¢EN 55024/CISPR 24¡¢ÒÀÕÕ IEC60950 :1999/EN60950:2000 ÈÏÖ¤µÄ CB¡¢P(SE)¡¢MIC¡¢TUV GS¡¢Ul ºÍ cUL¡¢GOST
Ëæ»úÅäÖ㺠µçÔ´Ïß¡¢¼ÒÍ¥ÓéÀÖÒ£¿ØÆ÷¡¢S-videoµçÀ¡¢AV µçÀ¡¢¼ÆËã»úµçÀ¡¢Ó¡Ë¢µÄÓû§Ö¸ÄÏ£¨Ó¢Óï¡¢·¨Óï¡¢µÂÓï¡¢Î÷°àÑÀÓï¡¢Òâ´óÀûÓŲÍþÓ£¬¿ìËÙÆô¶¯¿¨
±£ÐÞ£º Á½ÄêÖ®ÄÚÃâ·ÑÌṩÁ㲿¼þ¼°Î¬ÐÞ·þÎñ£¬¸½¼þ±£ÐÞÒ»Äê
µÆÅݱ£ÖÊÆÚ£º 90 Ìì»ò 500 Сʱ
²Ëµ¥ÓïÑÔ£º Ó¢Óï¡¢Î÷°àÑÀÓï¡¢·¨Óï¡¢µÂÓï¡¢ÈÕÓï¡¢º«Óï¡¢ÆÏÌÑÑÀÓï¡¢Òâ´óÀûÓŲÍþÓï¡¢¶íÓï¡¢·±Ì庺Óï¡¢¼òÌ庺Óï¡¢
'; /* Accessories DHTML Scroll Content */ var accessories='
'; accessories+='¿ÉÑ¡¸½¼þ'; accessories+='
SP-M1-10M   10Ã× M1-DVI µçÀÂ'; accessories+='
SP-DVI-ADPT    M1£­DVIÊÊÅäÆ÷'; accessories+='
SP-HDMI-ADPT   M1£­HDMIÊÊÅäÆ÷'; accessories+='
SP-M1-ADPT   M1·ÖÁ¿ÊÊÅäÆ÷'; accessories+='
SP-LAMP-017    ±¸ÓõÆÅÝ'; accessories+='
SP-CEIL-011   Í¨Óõõ¶¥°²×°'; accessories+='
SC-MANGRY-106H   106Ó¢´çHDTVÊÖ¶¯ÏÂÀ­ÐÍ»ÒÉ«ÆÁÄ»'; accessories+='
'; /* Downloads DHTML Scroll Content */ var downloads='
Êý¾ÝÒ³
'; createScroll('/i/products/screenplay/','prod_gradient2.jpg','prod_scrollbar.jpg','prod_scrollbar_off.jpg','prod_scroll_bullet.gif',16,16,335,281,258,469); //-->
???? ???? ????
Copyright © 1999-2005 InFocus Corporation.
All Rights Reserved.