home *** CD-ROM | disk | FTP | other *** search
/ Photo Explosion 2.5 (Special Edition) / NovaDevelopment-PhotoExplosionSE-v2.5-Windows.iso / Data / Data1.cab / _81D546D9959B48BD8D22611356592CB8 < prev    next >
Encoding:
Text File  |  2005-12-12  |  13.5 KB  |  234 lines

  1. <html>
  2.  
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  5.  
  6. <title>Wedding Memories</title>
  7. <style>.AlbumTitleStyle {  font-family: "Times New Roman", "Times", "serif"; font-size: 36pt; color: #FF3366; font-style: italic}
  8. .ThumbTitleStyle {  font-family: "Arial", "Helvetica", "sans-serif"; font-size: 11pt; font-style: normal; color: #333399}
  9. .Fixed02 {  font-family: "Arial", "Helvetica", "sans-serif"; font-size: 7pt; font-style: italic; color: #FFFF99}
  10. .SignStyle {  font-family: "Times New Roman", "Times", "serif"; font-size: 10pt; font-style: italic; font-weight: bold; color: #FFFFCC}
  11. </style>
  12. <script language="JavaScript">
  13. <!--
  14. <!--
  15. function MM_showHideLayers() { //v2.0
  16.   var i, visStr, args, theObj;
  17.   args = MM_showHideLayers.arguments;
  18.   for (i=0; i<(args.length-2); i+=3) { //with arg triples (objNS,objIE,visStr)
  19.     visStr   = args[i+2];
  20.     if (navigator.appName == 'Netscape' && document.layers != null) {
  21.       theObj = eval(args[i]);
  22.       if (theObj) theObj.visibility = visStr;
  23.     } else if (document.all != null) { //IE
  24.       if (visStr == 'show') visStr = 'visible'; //convert vals
  25.       if (visStr == 'hide') visStr = 'hidden';
  26.       theObj = eval(args[i+1]);
  27.       if (theObj) theObj.style.visibility = visStr;
  28.   } }
  29. }
  30.  
  31. function MM_timelinePlay(tmLnName, myID) { //v1.2
  32.   //Copyright 1997 Macromedia, Inc. All rights reserved.
  33.   var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
  34.   if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  35.   tmLn = document.MM_Time[tmLnName];
  36.   if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
  37.   if (myID == tmLn.ID) { //if Im newest
  38.     setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
  39.     fNew = ++tmLn.curFrame;
  40.     for (i=0; i<tmLn.length; i++) {
  41.       sprite = tmLn[i];
  42.       if (sprite.charAt(0) == 's') {
  43.         if (sprite.obj) {
  44.           numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
  45.           if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
  46.             keyFrm=1;
  47.             for (j=0; j<sprite.values.length; j++) {
  48.               props = sprite.values[j]; 
  49.               if (numKeyFr != props.length) {
  50.                 if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
  51.                 else        sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
  52.               } else {
  53.                 while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
  54.                 if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
  55.                   if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
  56.                   else        sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
  57.         } } } } }
  58.       } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  59.       if (fNew > tmLn.lastFrame) tmLn.ID = 0;
  60.   } }
  61. }
  62.  
  63. function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
  64.   //Copyright 1997 Macromedia, Inc. All rights reserved.
  65.   var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
  66.   if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  67.   tmLn = document.MM_Time[tmLnName];
  68.   if (numGotos != null)
  69.     if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
  70.     else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
  71.   jmpFwd = (fNew > tmLn.curFrame);
  72.   for (i = 0; i < tmLn.length; i++) {
  73.     sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
  74.     if (sprite.charAt(0) == "s") {
  75.       numKeyFr = sprite.keyFrames.length;
  76.       firstKeyFr = sprite.keyFrames[0];
  77.       lastKeyFr = sprite.keyFrames[numKeyFr - 1];
  78.       if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
  79.       for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
  80.       for (j=0; j<sprite.values.length; j++) {
  81.         props = sprite.values[j];
  82.         if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
  83.         else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
  84.         if (sprite.obj != null) {
  85.           if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
  86.           else        sprite.obj[props.prop2][props.prop] = props[propNum];
  87.       } }
  88.     } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  89.   }
  90.   tmLn.curFrame = fNew;
  91.   if (tmLn.ID == 0) eval('MM_timelinePlay(tmLnName)');
  92. }
  93.  
  94. function MM_preloadImages() { //v2.0
  95.   if (document.images) {
  96.     var imgFiles = MM_preloadImages.arguments;
  97.     if (document.preloadArray==null) document.preloadArray = new Array();
  98.     var i = document.preloadArray.length;
  99.     with (document) for (var j=0; j<imgFiles.length; j++) if (imgFiles[j].charAt(0)!="#"){
  100.       preloadArray[i] = new Image;
  101.       preloadArray[i++].src = imgFiles[j];
  102.   } }
  103. }
  104.  
  105. function MM_swapImgRestore() { //v2.0
  106.   if (document.MM_swapImgData != null)
  107.     for (var i=0; i<(document.MM_swapImgData.length-1); i+=2)
  108.       document.MM_swapImgData[i].src = document.MM_swapImgData[i+1];
  109. }
  110.  
  111. function MM_swapImage() { //v2.0
  112.   var i,j=0,objStr,obj,swapArray=new Array,oldArray=document.MM_swapImgData;
  113.   for (i=0; i < (MM_swapImage.arguments.length-2); i+=3) {
  114.     objStr = MM_swapImage.arguments[(navigator.appName == 'Netscape')?i:i+1];
  115.     if ((objStr.indexOf('document.layers[')==0 && document.layers==null) ||
  116.         (objStr.indexOf('document.all[')   ==0 && document.all   ==null))
  117.       objStr = 'document'+objStr.substring(objStr.lastIndexOf('.'),objStr.length);
  118.     obj = eval(objStr);
  119.     if (obj != null) {
  120.       swapArray[j++] = obj;
  121.       swapArray[j++] = (oldArray==null || oldArray[j-1]!=obj)?obj.src:oldArray[j];
  122.       obj.src = MM_swapImage.arguments[i+2];
  123.   } }
  124.   document.MM_swapImgData = swapArray; //used for restore
  125. }
  126.  
  127.  
  128. //-->
  129.  
  130. function MM_initTimelines() {
  131.     //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
  132.     var ns = navigator.appName == "Netscape";
  133.     document.MM_Time = new Array(2);
  134.     document.MM_Time[0] = new Array(9);
  135.     document.MM_Time["Timeline1"] = document.MM_Time[0];
  136.     document.MM_Time[0].MM_Name = "Timeline1";
  137.     document.MM_Time[0].fps = 15;
  138.     document.MM_Time[0][0] = new String("behavior");
  139.     document.MM_Time[0][0].frame = 1;
  140.     document.MM_Time[0][0].value = "MM_showHideLayers('document.layers[\\\'Layer4\\\']','document.all[\\\'Layer4\\\']','hide')";
  141.     document.MM_Time[0][1] = new String("behavior");
  142.     document.MM_Time[0][1].frame = 3;
  143.     document.MM_Time[0][1].value = "MM_showHideLayers('document.layers[\\\'Layer5\\\']','document.all[\\\'Layer5\\\']','hide')";
  144.     document.MM_Time[0][2] = new String("behavior");
  145.     document.MM_Time[0][2].frame = 5;
  146.     document.MM_Time[0][2].value = "MM_showHideLayers('document.layers[\\\'Layer6\\\']','document.all[\\\'Layer6\\\']','hide')";
  147.     document.MM_Time[0][3] = new String("behavior");
  148.     document.MM_Time[0][3].frame = 17;
  149.     document.MM_Time[0][3].value = "MM_timelineGoto('Timeline1','1')";
  150.     document.MM_Time[0][4] = new String("behavior");
  151.     document.MM_Time[0][4].frame = 9;
  152.     document.MM_Time[0][4].value = "MM_showHideLayers('document.layers[\\\'Layer4\\\']','document.all[\\\'Layer4\\\']','show')";
  153.     document.MM_Time[0][5] = new String("behavior");
  154.     document.MM_Time[0][5].frame = 11;
  155.     document.MM_Time[0][5].value = "MM_showHideLayers('document.layers[\\\'Layer6\\\']','document.all[\\\'Layer6\\\']','show')";
  156.     document.MM_Time[0][6] = new String("behavior");
  157.     document.MM_Time[0][6].frame = 13;
  158.     document.MM_Time[0][6].value = "MM_showHideLayers('document.layers[\\\'Layer5\\\']','document.all[\\\'Layer5\\\']','show')";
  159.     document.MM_Time[0][7] = new String("behavior");
  160.     document.MM_Time[0][7].frame = 7;
  161.     document.MM_Time[0][7].value = "MM_showHideLayers('document.layers[\\\'Layer7\\\']','document.all[\\\'Layer7\\\']','hide')";
  162.     document.MM_Time[0][8] = new String("behavior");
  163.     document.MM_Time[0][8].frame = 15;
  164.     document.MM_Time[0][8].value = "MM_showHideLayers('document.layers[\\\'Layer7\\\']','document.all[\\\'Layer7\\\']','show')";
  165.     document.MM_Time[0].lastFrame = 17;
  166.     document.MM_Time[1] = new Array(2);
  167.     document.MM_Time["Timeline2"] = document.MM_Time[1];
  168.     document.MM_Time[1].MM_Name = "Timeline2";
  169.     document.MM_Time[1].fps = 15;
  170.     document.MM_Time[1][0] = new String("sprite");
  171.     document.MM_Time[1][0].slot = 1;
  172.     if (ns)
  173.         document.MM_Time[1][0].obj = document["Layer8"];
  174.     else
  175.         document.MM_Time[1][0].obj = document.all ? document.all["Layer8"] : null;
  176.     document.MM_Time[1][0].keyFrames = new Array(1, 16, 28, 40);
  177.     document.MM_Time[1][0].values = new Array(2);
  178.     document.MM_Time[1][0].values[0] = new Array(470,474,478,482,486,491,495,499,503,507,510,514,517,520,523,525,526,527,526,525,523,522,520,518,517,516,515,516,517,519,522,524,527,530,533,536,539,543,546,549);
  179.     document.MM_Time[1][0].values[0].prop = "left";
  180.     document.MM_Time[1][0].values[1] = new Array(12,16,20,24,27,31,35,39,43,47,51,55,60,64,69,74,80,87,93,99,105,111,117,123,130,137,144,151,159,167,176,184,193,202,211,220,229,238,247,256);
  181.     document.MM_Time[1][0].values[1].prop = "top";
  182.     if (!ns) {
  183.         document.MM_Time[1][0].values[0].prop2 = "style";
  184.         document.MM_Time[1][0].values[1].prop2 = "style";
  185.     }
  186.     document.MM_Time[1][1] = new String("behavior");
  187.     document.MM_Time[1][1].frame = 90;
  188.     document.MM_Time[1][1].value = "MM_timelineGoto('Timeline2','1')";
  189.     document.MM_Time[1].lastFrame = 90;
  190.     for (i=0; i<document.MM_Time.length; i++) {
  191.         document.MM_Time[i].ID = null;
  192.         document.MM_Time[i].curFrame = 0;
  193.         document.MM_Time[i].delay = 1000/document.MM_Time[i].fps;
  194.     }
  195. }
  196. //-->
  197. </script>
  198. </head>
  199. <body id="Main" LINK="#ffff99" VLINK="#ffff99" ALINK="#ffff99" bgcolor="#FF6666"
  200. background="../image/back5.jpg" onLoad="MM_timelinePlay('Timeline1');MM_timelinePlay('Timeline2');MM_preloadImages('../image/button-p1.gif','#924148036860');MM_preloadImages('../image/button-h1.gif','#924148055640');MM_preloadImages('../image/button-n1.gif','#924148076410')">
  201. <div id="Layer2" style="position:absolute; left:3px; top:1px; width:231px; height:26px; z-index:16"><img src="../image/ido.gif" width="262" height="108"></div>
  202. <div id="Layer1" class="AlbumTitleStyle" style="position:absolute; width:630px; height:60px; z-index:17; left:4px; top: 47px"> 
  203.   <div align="left" class="TextHolder01"> 
  204.     <p id="uAlbumTitle" class="AlbumTitleStyle" align="center">Wedding Memories</p>
  205.   </div>
  206. </div>
  207.  
  208. <div id="Layer3" style="position:absolute; left:118px; top:118px; width:407px; height:248px; z-index:19"> 
  209.   <img src="../image/S-b4.jpg" width="407" height="247" name="uThumb004" class="SignStyle"> 
  210. </div>
  211. <div id="Layer4" style="position:absolute; left:5px; top:218px; width:30px; height:30px; z-index:20"><img src="../image/f1.gif" width="83" height="118"></div>
  212. <div id="Layer5" style="position:absolute; left:531px; top:291px; width:29px; height:31px; z-index:21"><img src="../image/f2.gif" width="69" height="70"></div>
  213. <div id="Layer8" style="position:absolute; left:470px; top:12px; width:26px; height:26px; z-index:22"><img src="../image/f3.gif" width="59" height="59"></div>
  214. <div id="Layer7" style="position:absolute; left:526px; top:269px; width:26px; height:26px; z-index:22"><img src="../image/f3.gif" width="59" height="59"></div>
  215. <div id="Layer6" style="position:absolute; left:46px; top:284px; width:26px; height:26px; z-index:22"><img src="../image/f3.gif" width="59" height="59"></div>
  216.  
  217. <div id="Layer14" class="Fixed02" style="position:absolute; width:300px; height:16px; z-index:17; left: 173px; top: 461px"> 
  218.   <p align="center"><a href="http://www.novadevelopment.com" class="Fixed02"> 
  219.      </a> 
  220. </div>
  221. <div id="Layer13" style="position:absolute; width:33px; height:28px; z-index:23; left: 248px; top: 411px"><a href="wedd-R3.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('document.layers[\'Layer13\'].document.uPreviousButton','document.uPreviousButton','../image/button-p1.gif','#924148036860')"><img src="../image/button-p.gif" width="39" height="40" name="uPreviousButton" border="0" alt="Back"></a></div>
  222. <div id="Layer15" style="position:absolute; width:32px; height:29px; z-index:24; left: 298px; top: 411px"><a href="wedd-R1.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('document.layers[\'Layer15\'].document.uHomeButton','document.uHomeButton','../image/button-h1.gif','#924148055640')"><img src="../image/button-h.gif" width="42" height="40" name="uHomeButton" border="0" alt="Home"></a></div>
  223. <div id="Layer16" style="position:absolute; width:35px; height:32px; z-index:25; left: 352px; top: 411px"><a href="wedd-R4.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('document.layers[\'Layer16\'].document.uNextButton','document.uNextButton','../image/button-n1.gif','#924148076410')"><img src="../image/button-n.gif" width="41" height="40" name="uNextButton" border="0" alt="Next"></a></div>
  224. <div id="Layer9" style="position:absolute; width:409px; height:29px; z-index:15; left: 117px; top: 368px"> 
  225.     <p id="uThumbTitle004" class="ThumbTitleStyle" align="center">Our first kiss as Mr. and Mrs. 
  226.       Stanley Roper. May 2000.</p>
  227. </div>
  228. <div id="Layer10" style="position:absolute; left:0; top:480; width:760; height:100; z-index:26; visibility: hidden"> 
  229.   <p id="uSignature" align="left" class="SignStyle">Input signature here!</p>
  230. </div>
  231. </body>
  232. </html>
  233.  
  234.