home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>Message in a Bottle</title>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- <style>
-
- IMG {
- position:relative;
- }
-
- .TextHolder01{
- cursor:hand;
- position:relative;
- font-family:"Arial", "Helvetica", "sans-serif";
- font-size:24pt;
- font-weight:bold;
- text-align:center;
- color:#003399;
- }
-
-
- .ParentLayer {
- border-style:groove;
- border-color:green;
- border-width:0px;
- }
-
- .ImageHolder {
- cursor:hand;
- }
-
- .VideoHolder {
- cursor:hand;
- }
-
- .Moveable01 {
- cursor:hand;
- position:relative;
- font-family:"Arial";
- font-size:12pt;
- font-style:italic;
- font-weight:bold;
- text-align:left;
- color:#ffffff;
- }
-
- .Fixed01 {
- font-family: Arial, Helvetica, sans-serif;
- font-size: 7pt;
- font-weight: normal;
- font-style: italic;
- color: #003399;
- text-align: center
- }
-
- .Fixed02 {
- cursor:arrow;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 7pt;
- font-weight: normal;
- font-style: italic;
- color: #ffff99;
- text-align: center
- }
-
- .Dynamic01 {
- cursor:arrow;
- position:relative;
- font-family:"Arial";
- font-size:12pt;
- font-style:italic;
- font-weight:bold;
- text-align:left;
- color:#ffff00;
- }
-
- .TextHolder02 { cursor:hand; position:relative; font-family:"Arial", "Helvetica", "sans-serif"; font-size:12pt; text-align:left; color:#000000; ; font-weight: bold}
-
- .SoundClip {
- cursor:hand;
- position:relative;
- }
- </style>
-
- <script language="JavaScript">
- <!--
- function MM_timelinePlay(tmLnName, myID) { //v1.2
- //Copyright 1997 Macromedia, Inc. All rights reserved.
- var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
- if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
- tmLn = document.MM_Time[tmLnName];
- if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
- if (myID == tmLn.ID) { //if Im newest
- setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
- fNew = ++tmLn.curFrame;
- for (i=0; i<tmLn.length; i++) {
- sprite = tmLn[i];
- if (sprite.charAt(0) == 's') {
- if (sprite.obj) {
- numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
- if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
- keyFrm=1;
- for (j=0; j<sprite.values.length; j++) {
- props = sprite.values[j];
- if (numKeyFr != props.length) {
- if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
- else sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
- } else {
- while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
- if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
- if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
- else sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
- } } } } }
- } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
- if (fNew > tmLn.lastFrame) tmLn.ID = 0;
- } }
- }
-
- function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
- //Copyright 1997 Macromedia, Inc. All rights reserved.
- var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
- if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
- tmLn = document.MM_Time[tmLnName];
- if (numGotos != null)
- if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
- else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
- jmpFwd = (fNew > tmLn.curFrame);
- for (i = 0; i < tmLn.length; i++) {
- sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
- if (sprite.charAt(0) == "s") {
- numKeyFr = sprite.keyFrames.length;
- firstKeyFr = sprite.keyFrames[0];
- lastKeyFr = sprite.keyFrames[numKeyFr - 1];
- if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
- for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
- for (j=0; j<sprite.values.length; j++) {
- props = sprite.values[j];
- if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
- else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
- if (sprite.obj != null) {
- if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
- else sprite.obj[props.prop2][props.prop] = props[propNum];
- } }
- } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
- }
- tmLn.curFrame = fNew;
- if (tmLn.ID == 0) eval('MM_timelinePlay(tmLnName)');
- }
-
- function MM_initTimelines() {
- //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
- var ns = navigator.appName == "Netscape";
- document.MM_Time = new Array(1);
- document.MM_Time[0] = new Array(1);
- document.MM_Time["Timeline1"] = document.MM_Time[0];
- document.MM_Time[0].MM_Name = "Timeline1";
- document.MM_Time[0].fps = 15;
- document.MM_Time[0][0] = new String("behavior");
- document.MM_Time[0][0].frame = 36;
- document.MM_Time[0][0].value = "MM_timelineGoto('Timeline1','1')";
- document.MM_Time[0].lastFrame = 36;
- for (i=0; i<document.MM_Time.length; i++) {
- document.MM_Time[i].ID = null;
- document.MM_Time[i].curFrame = 0;
- document.MM_Time[i].delay = 1000/document.MM_Time[i].fps;
- }
- }
- //-->
- </script>
- </head>
- <bgsound id="BackgroundSound" type="audio/midi" src="../audio/Xylophone Delight.mid" repeat="1" loop="-1">
- <body bgcolor="#D38F10" onLoad="MM_timelinePlay('Timeline1')" background="../image/gen05-bg.jpg">
- <div id="Layer9" style="position:absolute; left:15px; top:129px; width:260px; height:205px; z-index:31" class="ParentLayer">
- <a id="Link9" name="">
- <img id="uImage01" src="../image/gen05-photo6.jpg" width="285" height="187" class="ImageHolder" name="uImage01;285;187">
- </a> </div>
- <div id="Layer1" style="position:absolute; left:0; top:0; width:135px; height:162px; z-index:8"><img id="uImage02" src="../image/gen05-b1x1.jpg" width="152" height="420" class="Fixed02"></div>
- <div id="Layer10" style="position:absolute; left:414px; top:110px; width:332px; height:90px; z-index:29" class="ParentLayer">
- <a id="Link10" name="">
- <p id="uText02" align="right" class="TextHolder02">Here's a Web card greeting from a land far, far away...</p>
- </a>
- </div>
- <div id="Layer3" style="position:absolute; left:366px; top:57px; width:380px; height:52px; z-index:30" class="ParentLayer">
- <a id="Link3" name="">
- <p id="uText01" align="right" class="TextHolder01">Message in a Bottle</p>
- </a>
- </div>
- <div id="Layer5" style="position:absolute; left:519px; top:389px; width:240px; height:14px; z-index:28">
- <a id="Link5" name="http://www.novadevelopment.com">
- <p id="uLogo01" align="right" class="Fixed01"></p>
- </a>
- </div>
- <div id="Layer2" style="position:absolute; left:10px; top:297px; width:64px; height:50px; z-index:32"><img id="uImage07" src="../image/gen05-j.gif" width="289" height="41" class="Fixed02"></div>
- <div id="Layer4" style="position:absolute; left:613; top:0; width:73px; height:48px; z-index:25"><img id="uImage06" src="../image/gen05-b1x5.jpg" width="147" height="420" class="Fixed02"></div>
- <div id="Layer6" style="position:absolute; left:152; top:0; width:168px; height:436px; z-index:9"><img id="uImage03" src="../image/gen05-b1x2.jpg" width="162" height="420" class="Fixed02"></div>
- <div id="Layer7" style="position:absolute; left:314; top:0; width:96px; height:93px; z-index:10"><img src="../image/gen05-b1x3.jpg" width="142" height="420" class="Fixed02"></div>
- <div id="Layer8" style="position:absolute; left:456; top:0; width:157px; height:438px; z-index:11"><img id="uImage05" src="../image/gen05-b1x4.jpg" width="157" height="420" class="Fixed02"></div>
- </body>
- <script language="JavaScript" src="../../WebCard.js">
- </script>
- </html>
-