home *** CD-ROM | disk | FTP | other *** search
Wrap
<html> <head> <title>For My Friend</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:left; color:#FFFFFF; } .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 { cursor:arrow; font-family: "Arial", "Helvetica", "sans-serif"; font-size: 7pt; font-weight: normal; font-style: italic; color: #ffff99; 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; font-weight:bold; text-align:left; color:#FFFFFF; } .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_showHideLayers() { //v2.0 var i, visStr, args, theObj; args = MM_showHideLayers.arguments; for (i=0; i<(args.length-2); i+=3) { //with arg triples (objNS,objIE,visStr) visStr = args[i+2]; if (navigator.appName == 'Netscape' && document.layers != null) { theObj = eval(args[i]); if (theObj) theObj.visibility = visStr; } else if (document.all != null) { //IE if (visStr == 'show') visStr = 'visible'; //convert vals if (visStr == 'hide') visStr = 'hidden'; theObj = eval(args[i+1]); if (theObj) theObj.style.visibility = visStr; } } } 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(2); document.MM_Time[0] = new Array(7); 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("sprite"); document.MM_Time[0][0].slot = 1; if (ns) document.MM_Time[0][0].obj = document["Layer2"]; else document.MM_Time[0][0].obj = document.all ? document.all["Layer2"] : null; document.MM_Time[0][0].keyFrames = new Array(10, 23, 35); document.MM_Time[0][0].values = new Array(4); document.MM_Time[0][0].values[0] = new Array(674,642,611,579,547,515,484,452,421,389,358,328,298,268,237,207,177,148,119,90,62,34,6,-22,-50,-78); document.MM_Time[0][0].values[0].prop = "left"; document.MM_Time[0][0].values[1] = new Array(-6,3,11,19,28,36,45,54,63,72,82,93,105,117,132,148,164,182,199,217,236,254,273,292,311,329); document.MM_Time[0][0].values[1].prop = "top"; if (!ns) { document.MM_Time[0][0].values[0].prop2 = "style"; document.MM_Time[0][0].values[1].prop2 = "style"; } document.MM_Time[0][0].values[2] = new Array("inherit","inherit","inherit"); document.MM_Time[0][0].values[2].prop = "visibility"; if (!ns) document.MM_Time[0][0].values[2].prop2 = "style"; document.MM_Time[0][0].values[3] = new Array("2","2","2"); document.MM_Time[0][0].values[3].prop = "zIndex"; if (!ns) document.MM_Time[0][0].values[3].prop2 = "style"; document.MM_Time[0][1] = new String("sprite"); document.MM_Time[0][1].slot = 2; if (ns) document.MM_Time[0][1].obj = document["Layer3"]; else document.MM_Time[0][1].obj = document.all ? document.all["Layer3"] : null; document.MM_Time[0][1].keyFrames = new Array(1, 25, 50); document.MM_Time[0][1].values = new Array(3); document.MM_Time[0][1].values[0] = new Array(438,426,415,403,392,380,368,357,345,334,322,311,299,287,276,264,252,240,228,216,204,192,180,167,155,143,130,118,105,92,80,67,54,41,28,15,2,-11,-25,-38,-51,-64,-77,-91,-104,-117,-130,-144,-157,-170); document.MM_Time[0][1].values[0].prop = "left"; document.MM_Time[0][1].values[1] = new Array(399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399,399); document.MM_Time[0][1].values[1].prop = "top"; if (!ns) { document.MM_Time[0][1].values[0].prop2 = "style"; document.MM_Time[0][1].values[1].prop2 = "style"; } document.MM_Time[0][1].values[2] = new Array("11","3","3"); document.MM_Time[0][1].values[2].prop = "zIndex"; if (!ns) document.MM_Time[0][1].values[2].prop2 = "style"; document.MM_Time[0][2] = new String("behavior"); document.MM_Time[0][2].frame = 70; document.MM_Time[0][2].value = "MM_timelineGoto('Timeline1','1')"; document.MM_Time[0][3] = new String("behavior"); document.MM_Time[0][3].frame = 35; document.MM_Time[0][3].value = "MM_showHideLayers('document.layers[\\\'Layer2\\\']','document.all[\\\'Layer2\\\']','hide')"; document.MM_Time[0][4] = new String("behavior"); document.MM_Time[0][4].frame = 51; document.MM_Time[0][4].value = "MM_showHideLayers('document.layers[\\\'Layer3\\\']','document.all[\\\'Layer3\\\']','hide','document.layers[\\\'Layer4\\\']','document.all[\\\'Layer4\\\']','hide')"; document.MM_Time[0][5] = new String("behavior"); document.MM_Time[0][5].frame = 10; document.MM_Time[0][5].value = "MM_showHideLayers('document.layers[\\\'Layer2\\\']','document.all[\\\'Layer2\\\']','show')"; document.MM_Time[0][6] = new String("behavior"); document.MM_Time[0][6].frame = 1; document.MM_Time[0][6].value = "MM_showHideLayers('document.layers[\\\'Layer2\\\']','document.all[\\\'Layer2\\\']','hide','document.layers[\\\'Layer3\\\']','document.all[\\\'Layer3\\\']','show','document.layers[\\\'Layer4\\\']','document.all[\\\'Layer4\\\']','show')"; document.MM_Time[0].lastFrame = 70; document.MM_Time[1] = new Array(2); document.MM_Time["Timeline2"] = document.MM_Time[1]; document.MM_Time[1].MM_Name = "Timeline2"; document.MM_Time[1].fps = 15; document.MM_Time[1][0] = new String("behavior"); document.MM_Time[1][0].frame = 5; document.MM_Time[1][0].value = "MM_showHideLayers('document.layers[\\\'Layer6\\\']','document.all[\\\'Layer6\\\']','show')"; document.MM_Time[1][1] = new String("behavior"); document.MM_Time[1][1].frame = 7; document.MM_Time[1][1].value = "MM_showHideLayers('document.layers[\\\'Layer7\\\']','document.all[\\\'Layer7\\\']','show')"; document.MM_Time[1].lastFrame = 7; 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/Good Friends, Good Times.mid" repeat="1" loop="-1"> <body bgcolor="#FFFFFF" background="../image/frfor-bk.jpg" onLoad="MM_timelinePlay('Timeline2');MM_timelinePlay('Timeline1')"> <div id="Layer1" style="position:absolute; left:275px; top:199px; width:92px; height:169px; z-index:34" class="ParentLayer"> <a id="Link1" name=""> <img id="uImage01" src="../image/girl.gif" width="127" height="259" class="Fixed02"> </a> </div> <div id="Layer2" style="position:absolute; left:674px; top:-6px; width:57px; height:42px; z-index:2; visibility: inherit" class="ParentLayer"> <a id="Link2" name=""> <img id="uImage02" src="../image/airplane.gif" width="77" height="59" class="Dynamic01"> </a> </div> <div id="Layer3" style="position:absolute; left:438px; top:399px; width:63px; height:39px; z-index:11" class="ParentLayer"> <a id="Link3" name=""> <img id="uImage03" src="../image/ship.gif" width="177" height="137" border="0" class="Dynamic01"> </a> </div> <div id="Layer5" style="position:absolute; left:422px; top:141px; width:192px; height:160px; z-index:5" class="ParentLayer"> <a id="Link4" name=""> <img id="uImage04" src="../image/frfor-letter1.jpg" width="369" height="227" class="Dynamic01"> </a> </div> <div id="Layer6" style="position:absolute; left:420px; top:71px; width:366px; height:66px; z-index:36; visibility: hidden" class="ParentLayer"> <a id="Link5" name=""> <img id="uImage05" src="../image/frfor-letter2.gif" width="372" height="71" class="Dynamic01"> </a> </div> <div id="Layer7" style="position:absolute; left:427px; top:148px; width:30px; height:30px; z-index:37; visibility: hidden" class="ParentLayer"> <a id="Link6"> <img id="uImage06" src="../image/frfor-photo.jpg" width="360" height="215" border="0" name="uImage06;360;215" class="ImageHolder"> </a> </div> <div id="Layer37" class="ParentLayer" style="position:absolute; width:398px; height:86px; z-index:65; left: 19px; top: 137px"> <div align="center"> <a id="Link7" name=""> <p id="uText01" class="TextHolder01">Friends Forever </a> </div> </div> <DIV id="Layer38" class="ParentLayer" style="position:absolute; width:164px; height:318px; z-index:65; left: 50px; top: 191px"> <DIV align="center"> <A id="Link8" name=""> <P id="uText02" class="TextHolder02">Hello Samantha! How are you? Remember this picture? We had so much fun. I miss you very much and I just wanted to write to say that I am thinking of you. </A> </DIV> </DIV> <div id="Layer10" style="position:absolute; left:580px; top:380px; width:123px; height:114px; z-index:10" class="ParentLayer"> <a id="Link9" name=""> <img id="uImage07" src="../image/frfor-vbk1.jpg" width="172" height="130" class="Moveable01"> </a> </div> <DIV id="Layer11" style="position:absolute; left:20px; top:-30px; width:10px; height:13px; z-index:31" class="ParentLayer"> <a id="Link10" name=""> <IMG id="uImage08" src="../image/frfor-moon.gif" width="235" height="193" class="Dynamic01"> </a> </DIV> <DIV id="Layer14" style="position:absolute; left:44px; top:8px; width:11px; height:12px; z-index:2" class="ParentLayer"> <a id="Link13" name=""> <IMG id="uImage11" src="../image/star-ani.gif" width="50" height="52" class="Fixed02"> </a> </DIV> <DIV id="Layer15" style="position:absolute; left:33px; top:142px; width:12px; height:9px; z-index:2" class="ParentLayer"> <a id="Link14" name=""> <IMG id="uImage12" src="../image/star-ani.gif" width="50" height="52" class="Fixed02"> </a> </DIV> <DIV id="Layer16" style="position:absolute; left:361px; top:35px; width:7px; height:9px; z-index:2" class="ParentLayer"> <a id="Link15" name=""> <IMG id="uImage13" src="../image/star-ani.gif" width="50" height="52" class="Fixed02"> </a> </DIV> <DIV id="Layer19" style="position:absolute; left:287px; top:11px; width:11px; height:9px; z-index:2" class="ParentLayer"> <a id="Link18" name=""> <IMG id="uImage16" src="../image/star-ani.gif" width="50" height="52" class="Fixed02"> </a> </DIV> <DIV id="Layer20" style="position:absolute; left:121px; top:159px; width:22px; height:31px; z-index:2" class="ParentLayer"> <a id="Link19" name=""> <IMG id="uImage17" src="../image/star-ani.gif" width="50" height="52" class="Fixed02"> </a> </DIV> <DIV id="Layer21" style="position:absolute; left:11px; top:231px; width:12px; height:9px; z-index:2" class="ParentLayer"> <a id="Link20" name=""> <IMG id="uImage18" src="../image/star-ani.gif" width="50" height="52" class="Fixed02"> </a> </DIV> <DIV id="Layer23" style="position:absolute; left:238px; top:85px; width:4px; height:9px; z-index:2" class="ParentLayer"> <a id="Link21" name=""> <IMG id="uImage19" src="../Image/star-ani.gif" width="50" height="52" class="Fixed02"> </a> </DIV> <DIV id="Layer24" style="position:absolute; left:457px; top:0px; width:9px; height:7px; z-index:2" class="ParentLayer"> <a id="Link22" name=""> <IMG id="uImage20" src="../image/star-ani.gif" width="50" height="52" class="Fixed02"> </a> </DIV> <DIV id="Layer26" style="position:absolute; left:112px; top:35px; width:6px; height:8px; z-index:2" class="ParentLayer"> <a id="Link24" name=""> <IMG id="uImage22" src="../image/star-ani.gif" width="50" height="52" class="Fixed02"> </a> </DIV> <DIV id="Layer29" style="position:absolute; left:0px; top:6px; width:5px; height:7px; z-index:1" class="ParentLayer"> <a id="Link27" name=""> <img id="uImage25" src="../image/frfor-earth.jpg" width="800" height="517" class="Fixed02"> </a> </DIV> <DIV id="Layer30" style="position:absolute; left:240px; top:350px; width:5px; height:12px; z-index:32" class="ParentLayer"> <a id="Link28" name=""> <IMG id="uImage26" src="../image/frfor-cloud.gif" width="116" height="72" class="Fixed02"> </a> </DIV> <div id="VideoBorder" class="ParentLayer" style="visibility:hidden; position:absolute; width:30px; height:30px; z-index:69; left: 0px; top: 0px; border-width:5px;"> </div> <div id="VideoLayer" style="position:absolute; width:30px; height:30px; z-index:67; left: 586px; top: 385px" class="ParentLayer"> <a id="Link29" name=""> <img id="uVideo01" type="video/avi" dynsrc="../video/Underwater Hello.avi" width="160" height="120" repeat="1" loop="-1" class="VideoHolder"> </a> </div> <div id="Layer36" class="ParentLayer" style="position:absolute; width:363px; height:21px; z-index:17; left: 213px; top: 524px"> <div align="center" > <a id="Link30" name="http://www.novadevelopment.com"> <p id="uLogo01" align="right" class="Fixed01"> </a> </div> </div> </body> <script language="JavaScript" src="../../WebCard.js"> </script> </html>