понеділок, 17 січня 2011 р.

Storyline -

";fObj.style.left = document.body.scrollLeft;fObj.style.top = document.body.scrollTop;fObj.style.width = document.body.offsetWidth;fObj.style.height = document.body.offsetHeight;fObj.contentWindow.document.write(html);document.body.style.overflow = "hidden";fObj.style.visibility = "visible";}else obj.style.visibility = "hidden";}function theia_UniqueID(inPrefix){theia_last_id ++;return inPrefix + "_" + theia_last_id;}function theia_StrReplace(inSearch,inReplace,inSubject){var result = "";var oldi = 0;var I = 0;for(I=inSubject.indexOf(inSearch);I>-1;I=inSubject.indexOf(inSearch,I)){result += inSubject.substring(oldi,I);result += inReplace;I += inSearch.length;oldi = I;}return result + inSubject.substring(oldi,inSubject.length);}function theia_HideObj(inObj){inObj.style.position = "absolute";inObj.style.left = "-" + theia_GetWidth(inObj) + "px";inObj.style.visibility = "hidden";}function theia_ShowObj(inObj){inObj.style.position = "relative";inObj.style.left = "0px";inObj.style.visibility = "visible";}function tu(text){var Alpha = "Az0By1Cx2Dw3Ev4Fu5Gt6Hs7Ir8Jq9KpLoMnNmOkPjQlRiShTgUfVeWdXcYbZa";var ALen = Alpha.length-1;var C = "";var I=0;for(I=0;I -1;i = subject.indexOf (search, i)){result += subject.substring (oldi, i);result += replace;i += search.length;oldi = i;}return result + subject.substring (oldi, subject.length);}function theia_Toggle(inID,inTextID){var obj = theia_GetObj(inID);var sign;if(obj.className == 'div_show'){obj.className = 'div_hide';sign = "+";}else{obj.className = 'div_show';sign = "-";}obj = theia_GetObj(inTextID);obj.innerHTML = "[" + sign + "]";}function theia_ToggleEx(inID,inTextID,textHide,textShow){var obj = theia_GetObj(inID);var sign;if(obj.className == 'div_show'){obj.className = 'div_hide';sign = textShow;}else{obj.className = 'div_show';sign = textHide;}obj = theia_GetObj(inTextID);obj.innerHTML = "[" + sign + "]";}function theia_3Panes(){var top = theia_GetObj("theia_Top");var middle = theia_GetObj("theia_Middle");var bottom = theia_GetObj("theia_Bottom");top.style.position = "absolute";top.style.left = 0;top.style.top = 0;top.style.width = "100%";bottom.style.position = "absolute";bottom.style.left = 0;bottom.style.width = "100%";bottom.style.bottom = 0;middle.style.position = "absolute";middle.style.left = 0;middle.style.width = "100%";middle.style.overflow = "auto";middle.style.top = theia_GetPageOffsetTop(top) + theia_GetHeight(top);middle.style.height = theia_GetPageOffsetTop(bottom) - (theia_GetPageOffsetTop(top) + theia_GetHeight(top));}function theia_CreateXhrObject(){if (window.XMLHttpRequest) return new XMLHttpRequest();if (window.ActiveXObject){var names = [ "Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0", "Msxml2.XMLHTTP", "Microsoft.XMLHTTP" ];for(var i in names){try{return new ActiveXObject(names[i]);}catch(e){}}}return null;}function theia_XhrPost(url,params,bDebug){http = theia_CreateXhrObject();if(http){http.open("POST", url, true);http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");http.setRequestHeader("Content-length", params.length);http.setRequestHeader("Connection", "close");if(bDebug){http.onreadystatechange = function(){if(http.readyState == 4 && http.status == 200){alert(http.responseText);}};}else{http.onreadystatechange = function(){};}http.send(params);}}function theia_Outline(id,color_inside,color_border,size){var obj_div = theia_GetObj(id + "_div");if(!obj_div) return;var obj_src = theia_GetObj(id );if(!obj_src) return;var obj_new = document.createElement('div');if(!obj_new) return;var x = -size;var y = -size;var text = obj_src.innerHTML;var html = "";var width = obj_div.offsetWidth;if(width == 0) width=640;while (y"+text+"";html += ""+text+"";x=x+1;}y=y+1;}html += ""+text+"";obj_new.style.position = "absolute";obj_new.innerHTML = html;obj_div.removeChild(obj_src);obj_div.appendChild(obj_new);} var openTimer = 0;var closeTimer = 0;var thDebugText = "";function thDebug(text){var obj = theia_GetObj("thDebug");thDebugText += text + "";}var thMenuTimer = 0;function thMenuOpen(id,bTimer){{clearTimeout(thMenuTimer);}thMenuTimer = setTimeout("thMenuOpenAnim('"+id+"',0);",100);}function thMenuClose(id,bTimer){{clearTimeout(thMenuTimer);}thMenuTimer = setTimeout("thMenuCloseAnim('"+id+"',0);",100);}function thMenuOpenAnim(id,count){var menu = theia_GetObj(id);var menu_title = theia_GetObj("theia_menu_title");var menu_content = theia_GetObj("theia_menu_content");var menu_inside = theia_GetObj("theia_menu_inside");var padID = "padding-left";if(theia_browser_id == 'ie') padID = "paddingLeft";var padLeft = parseInt(theia_GetStyle(menu_inside,padID));var maxWidth = theia_GetWidth(menu_content) + padLeft;thDebug("maxWidth = " + maxWidth);if(theia_GetWidth(menu) >= maxWidth){menu.style.width = maxWidth;return;}if(count == 0){theia_Fade('theia_menu_title', 100, 0, 500);theia_Fade('theia_menu_content', 0,100, 500);}var newWidth = theia_GetWidth(menu) + 20;if(newWidth >= maxWidth) menu.style.width = maxWidth;else{menu.style.width = newWidth;thMenuTimer = setTimeout("thMenuOpenAnim('"+id+"',"+(count+1)+")", 5);}}function theia_GetStyle(obj,styleProp){if (obj.currentStyle) return obj.currentStyle[styleProp];else if (window.getComputedStyle) return document.defaultView.getComputedStyle(obj,null).getPropertyValue(styleProp);return 0;}var thMenuBOpening = 0;var thMenuBClosing = 0;function thIsMouseInObj(obj){X0 = theia_GetPageOffsetLeft(obj);Y0 = theia_GetPageOffsetTop (obj);X1 = X0 + theia_GetWidth (obj);Y1 = Y0 + theia_GetHeight(obj);if(thXMouse X1) return 0;if(thYMouse Y1) return 0;return 1;}function thMenuCloseAnim(id,count){var menu = theia_GetObj(id);var menu_inside = theia_GetObj("theia_menu_inside");var menuTitle = theia_GetObj("theia_menu_title");var padID = "padding-left";if(theia_browser_id == 'ie') padID = "paddingLeft";else{}var padLeft = parseInt(theia_GetStyle(menu_inside,padID));var minWidth = theia_GetWidth(menuTitle) + padLeft;thDebug(theia_GetWidth(menu) + " " + minWidth);if(theia_GetWidth(menu) 0){if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]){var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0":"";var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;var descArray = flashDescription.split(" ");var tempArrayMajor = descArray[2].split(".");var versionMajor = tempArrayMajor[0];var versionMinor = tempArrayMajor[1];var versionRevision = descArray[3];if (versionRevision == ""){versionRevision = descArray[4];}if (versionRevision[0] == "d"){versionRevision = versionRevision.substring(1);}else if (versionRevision[0] == "r"){versionRevision = versionRevision.substring(1);if (versionRevision.indexOf("d") > 0){versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));}}var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;}}else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;else if ( isIE && isWin && !isOpera ){flashVer = ControlVersion();}return flashVer;}function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision){versionStr = GetSwfVer();if (versionStr == -1 ){return false;}else if (versionStr != 0){if(isIE && isWin && !isOpera){tempArray = versionStr.split(" ");tempString = tempArray[1];versionArray = tempString.split(",");}else{versionArray = versionStr.split(".");}var versionMajor = versionArray[0];var versionMinor = versionArray[1];var versionRevision = versionArray[2];if (versionMajor > parseFloat(reqMajorVer)){return true;}else if (versionMajor == parseFloat(reqMajorVer)){if (versionMinor > parseFloat(reqMinorVer)) return true;else if (versionMinor == parseFloat(reqMinorVer)){if (versionRevision >= parseFloat(reqRevision)) return true;}}return false;}}function AC_AddExtension(src, ext){if (src.indexOf('?') != -1) return src.replace(/\?/, ext+'?');else return src + ext;}function AC_Generateobj(objAttrs, params, embedAttrs){var str = '';if (isIE && isWin && !isOpera){str += '';}else{str += '';}document.write(str);}function AC_FL_RunContent(){var ret = AC_GetArgs ( arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" , "application/x-shockwave-flash" );AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);}function AC_GetArgs(args, ext, srcParamName, classid, mimeType){var ret = new Object();ret.embedAttrs = new Object();ret.params = new Object();ret.objAttrs = new Object();for (var i=0;i yLimit){float_newYPos = yLimit - theia_ad_vert_float.offsetHeight;}}float_newXPos = theia_GetPageOffsetLeft(theia_ad_marker) + theia_ad_marker.offsetWidth - theia_ad_vert_float.offsetWidth;if(theia_browser_id == "ie") float_newXPos -= 9;else float_newXPos -= 27;theia_ad_vert_float.style.top = float_newYPos;theia_ad_vert_float.style.left = float_newXPos;}function theia_RepositionAll(){theia_RepositionAdVert();}if(window.onload){var oldOnload_pos = window.onload;window.onload = function(){oldOnload_pos();theia_RepositionInit();};}else window.onload = theia_RepositionInit; //-->

«Moon» is a 2009 film directed by Duncan Jones, starring Sam Rockwell, Kevin Spacey, Kaya Scodelario, Matt Berry, and Benedict Wong.

Sam (Robin Chalk) Bell (Sam Rockwell) is an employee contracted by Lunar Industries to extract helium-3 from lunar regolith, for much-needed clean energy back on Earth, leaving behind his wife Tess (Dominique McElligott), who was pregnant with their daughter, Eve, when he left Earth. He is stationed for three years at the largely automated "Sarang" lunar base ("sarang" means 'love' in Korean), with only a robotic assistant named GERTY (voiced by Kevin Spacey) for company. A chronic communications satellite failure limits him with only occasional recorded transmissions to and from Earth, as fixing the link is not among Lunar Industries' priorities. Two weeks before completing his contract, Sam begins to hallucinate, briefly seeing a teenage girl on the station. During a routine rover excursion to retrieve ready canisters of helium-3 from an automated harvesting machine, he sees a figure standing on the lunar surface and, distracted, he crashes his rover into the harvester, losing internal atmosphere. Sam hurriedly switches on his suit's life support system before losing consciousness.

Sam then awakens in the base's infirmary and GERTY tells him that he is recovering from injuries sustained in an accident. Sam's suspicions are aroused when he eavesdrops on a live communication between GERTY and Lunar Industries executives and learns that GERTY has been instructed not to allow him outside the base. Then a message from Lunar Industries informs him that a rescue team "Eliza" is on the way, to repair the damaged harvester.

Sam sabotages a gas pipe in the base to convince GERTY to allow him outside to check for what Sam tells him is "micro-meteoroid damage". Once outside the base, Sam instead investigates the damaged harvester, where he finds someone barely alive in the crashed rover: himself. He brings this other 'Sam' back to the Sarang base.

The two Sams struggle to come to grips with each other's existence, both believing the other to be a clone; the Sam rescued from the harvester begins to deteriorate. After inquiring of GERTY if he is a clone, the harvester-rescued Sam learns that he is--and that the actual, original Sam Bell's genetic material and memories have been harvested for the production of hundreds of Sam clones. Meanwhile, unable to find answers within the base as to the reasons for the inability to contact Earth "live", both Sams investigate the source of the base's communication problem by venturing outside the base's perimeter, where they find a series of antennas jamming direct live communication with Earth. The harvester Sam starts feeling pain and becoming even more ill, and returns to base; both Sams' suspicions of cloning are further confirmed when, with the aid of GERTY, harvester Sam discovers video logs of previous Sam Bell clones working, becoming ill and ultimately getting into the "hibernation" pod intending to return home, but are instead incinerated.

It emerges that the three-year "contract" is actually a Sam clone's lifespan, explaining why the harvester Sam, who was two weeks from his contract ending, is beginning to degenerate both mentally and physically--hallucinations, shortness of breath, pale skin, excessive bleeding from minor injuries, and chronic pain--while the second Sam, the one who woke up in the infirmary, is not.

The second Sam reasons that the company cannot possibly be sending in new clones to be awakened at regular intervals; there must be an entire in-house process in place, self-contained. So, the two start looking for the secret room where other "pending" clones must be kept. The first Sam explores the hibernation pod chamber area further, discovering a large room sequestered underneath it, behind a floor panel. The two Sams explore the room below, which indeed houses an extensive cache of unawakened clones.

The sick Sam then decides to take another rover outside beyond the base perimeter and for the first time establishes an unblocked uplink with 'his' home on Earth. While obscuring his videophone's camera, he speaks with 'his' daughter Eve, now 15 years old, and learns that his wife Tess died "some years ago"-- and that of course, the actual, original Sam Bell has long been alive and well on Earth. When he gets back, the healthy Sam also views the video conversation and discovers the whole truth.

The "rescue" team sent to fix the harvester is actually also a clean-up team sent to ensure that only one active clone exists at any one time on the base's premises. Both the healthy Sam and the sick Sam know that this team will not let either of them live if they are found at the base. The healthy Sam makes a plan to launch the sick Sam back to Earth (on the reasoning that the sick Sam is the more deserving since he "did the three years") in a helium delivery vessel, and proposing to place another clone body in the damaged rover to take the sick Sam's place. However the sick Sam, aware that he is near death, insists that the healthy Sam go instead, while he returns to the rover to die, and with the new third Sam clone awakening to prevent the rescue team from becoming suspicious.

GERTY permits the healthy Sam to wipe out his memory and reboot him. Quickly, that Sam also redirects an automated helium harvester to crash into one of the radio signal jammers, in order to ensure that from that moment forward, all new Sam clones would have unjammed access to Earth, and live feeds. Then the healthy Sam clone launches his escape back to Earth, being seen by the sick Sam in his final moments. The harvester destroys the jamming equipment and the base computer registers that a live up-link has been established. As the second Sam approaches Earth, newscast voice-overs begin detailing the consequences of his return: Lunar Industries' stock price crashes; Sam's clone gives evidence to an unidentified Board of Directors; and finally a radio talk-show host denounces the clone as a 'wacko' or an illegal immigrant and insists he be jailed.

Немає коментарів:

Дописати коментар