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

  1. <html>
  2. <head>
  3. <title>General Album</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  5. <script language="JavaScript">
  6. <!--
  7. function MM_preloadImages() { //v2.0
  8.   if (document.images) {
  9.     var imgFiles = MM_preloadImages.arguments;
  10.     if (document.preloadArray==null) document.preloadArray = new Array();
  11.     var i = document.preloadArray.length;
  12.     with (document) for (var j=0; j<imgFiles.length; j++) if (imgFiles[j].charAt(0)!="#"){
  13.       preloadArray[i] = new Image;
  14.       preloadArray[i++].src = imgFiles[j];
  15.   } }
  16. }
  17.  
  18. function MM_swapImgRestore() { //v2.0
  19.   if (document.MM_swapImgData != null)
  20.     for (var i=0; i<(document.MM_swapImgData.length-1); i+=2)
  21.       document.MM_swapImgData[i].src = document.MM_swapImgData[i+1];
  22. }
  23.  
  24. function MM_swapImage() { //v2.0
  25.   var i,j=0,objStr,obj,swapArray=new Array,oldArray=document.MM_swapImgData;
  26.   for (i=0; i < (MM_swapImage.arguments.length-2); i+=3) {
  27.     objStr = MM_swapImage.arguments[(navigator.appName == 'Netscape')?i:i+1];
  28.     if ((objStr.indexOf('document.layers[')==0 && document.layers==null) ||
  29.         (objStr.indexOf('document.all[')   ==0 && document.all   ==null))
  30.       objStr = 'document'+objStr.substring(objStr.lastIndexOf('.'),objStr.length);
  31.     obj = eval(objStr);
  32.     if (obj != null) {
  33.       swapArray[j++] = obj;
  34.       swapArray[j++] = (oldArray==null || oldArray[j-1]!=obj)?obj.src:oldArray[j];
  35.       obj.src = MM_swapImage.arguments[i+2];
  36.   } }
  37.   document.MM_swapImgData = swapArray; //used for restore
  38. }
  39.  
  40. function MM_timelinePlay(tmLnName, myID) { //v1.2
  41.   //Copyright 1997 Macromedia, Inc. All rights reserved.
  42.   var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
  43.   if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  44.   tmLn = document.MM_Time[tmLnName];
  45.   if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
  46.   if (myID == tmLn.ID) { //if Im newest
  47.     setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
  48.     fNew = ++tmLn.curFrame;
  49.     for (i=0; i<tmLn.length; i++) {
  50.       sprite = tmLn[i];
  51.       if (sprite.charAt(0) == 's') {
  52.         if (sprite.obj) {
  53.           numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
  54.           if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
  55.             keyFrm=1;
  56.             for (j=0; j<sprite.values.length; j++) {
  57.               props = sprite.values[j]; 
  58.               if (numKeyFr != props.length) {
  59.                 if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
  60.                 else        sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
  61.               } else {
  62.                 while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
  63.                 if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
  64.                   if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
  65.                   else        sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
  66.         } } } } }
  67.       } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  68.       if (fNew > tmLn.lastFrame) tmLn.ID = 0;
  69.   } }
  70. }
  71.  
  72. function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
  73.   //Copyright 1997 Macromedia, Inc. All rights reserved.
  74.   var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
  75.   if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  76.   tmLn = document.MM_Time[tmLnName];
  77.   if (numGotos != null)
  78.     if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
  79.     else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
  80.   jmpFwd = (fNew > tmLn.curFrame);
  81.   for (i = 0; i < tmLn.length; i++) {
  82.     sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
  83.     if (sprite.charAt(0) == "s") {
  84.       numKeyFr = sprite.keyFrames.length;
  85.       firstKeyFr = sprite.keyFrames[0];
  86.       lastKeyFr = sprite.keyFrames[numKeyFr - 1];
  87.       if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
  88.       for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
  89.       for (j=0; j<sprite.values.length; j++) {
  90.         props = sprite.values[j];
  91.         if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
  92.         else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
  93.         if (sprite.obj != null) {
  94.           if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
  95.           else        sprite.obj[props.prop2][props.prop] = props[propNum];
  96.       } }
  97.     } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  98.   }
  99.   tmLn.curFrame = fNew;
  100.   if (tmLn.ID == 0) eval('MM_timelinePlay(tmLnName)');
  101. }
  102.  
  103. function MM_initTimelines() {
  104.     //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
  105.     var ns = navigator.appName == "Netscape";
  106.     document.MM_Time = new Array(1);
  107.     document.MM_Time[0] = new Array(3);
  108.     document.MM_Time["Timeline1"] = document.MM_Time[0];
  109.     document.MM_Time[0].MM_Name = "Timeline1";
  110.     document.MM_Time[0].fps = 15;
  111.     document.MM_Time[0][0] = new String("sprite");
  112.     document.MM_Time[0][0].slot = 1;
  113.     if (ns)
  114.         document.MM_Time[0][0].obj = document["Layer11"];
  115.     else
  116.         document.MM_Time[0][0].obj = document.all ? document.all["Layer11"] : null;
  117.     document.MM_Time[0][0].keyFrames = new Array(1, 7, 28);
  118.     document.MM_Time[0][0].values = new Array(3);
  119.     document.MM_Time[0][0].values[0] = new Array(665,667,669,671,674,677,681,682,683,684,685,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703);
  120.     document.MM_Time[0][0].values[0].prop = "left";
  121.     document.MM_Time[0][0].values[1] = new Array(134,132,130,128,126,124,125,126,127,129,130,131,133,134,136,138,140,141,143,145,147,149,151,153,154,156,158,160);
  122.     document.MM_Time[0][0].values[1].prop = "top";
  123.     if (!ns) {
  124.         document.MM_Time[0][0].values[0].prop2 = "style";
  125.         document.MM_Time[0][0].values[1].prop2 = "style";
  126.     }
  127.     document.MM_Time[0][0].values[2] = new Array("14","12","12");
  128.     document.MM_Time[0][0].values[2].prop = "zIndex";
  129.     if (!ns)
  130.         document.MM_Time[0][0].values[2].prop2 = "style";
  131.     document.MM_Time[0][1] = new String("behavior");
  132.     document.MM_Time[0][1].frame = 29;
  133.     document.MM_Time[0][1].value = "MM_timelineGoto('Timeline1','1')";
  134.     document.MM_Time[0][2] = new String("sprite");
  135.     document.MM_Time[0][2].slot = 2;
  136.     if (ns)
  137.         document.MM_Time[0][2].obj = document["Layer12"];
  138.     else
  139.         document.MM_Time[0][2].obj = document.all ? document.all["Layer12"] : null;
  140.     document.MM_Time[0][2].keyFrames = new Array(1, 28);
  141.     document.MM_Time[0][2].values = new Array(3);
  142.     document.MM_Time[0][2].values[0] = new Array(228,227,226,225,225,224,223,222,221,220,219,219,218,217,216,215,214,214,213,212,211,210,209,208,208,207,206,205);
  143.     document.MM_Time[0][2].values[0].prop = "left";
  144.     document.MM_Time[0][2].values[1] = new Array(203,203,202,202,202,202,201,201,201,200,200,200,199,199,199,199,198,198,198,197,197,197,196,196,196,196,195,195);
  145.     document.MM_Time[0][2].values[1].prop = "top";
  146.     if (!ns) {
  147.         document.MM_Time[0][2].values[0].prop2 = "style";
  148.         document.MM_Time[0][2].values[1].prop2 = "style";
  149.     }
  150.     document.MM_Time[0][2].values[2] = new Array("15","13");
  151.     document.MM_Time[0][2].values[2].prop = "zIndex";
  152.     if (!ns)
  153.         document.MM_Time[0][2].values[2].prop2 = "style";
  154.     document.MM_Time[0].lastFrame = 29;
  155.     for (i=0; i<document.MM_Time.length; i++) {
  156.         document.MM_Time[i].ID = null;
  157.         document.MM_Time[i].curFrame = 0;
  158.         document.MM_Time[i].delay = 1000/document.MM_Time[i].fps;
  159.     }
  160. }
  161. //-->
  162. </script>
  163. <style type="text/css">
  164. <!--
  165. .AlbumTitleStytle {  font-family: "Times New Roman", "Times", "serif"; font-size: 32pt; font-style: italic; color: #FFFFFF}
  166. .ThumbTitleStyle {  font-family: "Arial", "Helvetica", "sans-serif"; font-size: 9pt; font-weight: bold; color: #99CCFF}
  167. .Fixed02 {  font-family: "Arial", "Helvetica", "sans-serif"; font-size: 7pt; font-style: italic; color: #FFFF99}
  168. .SignStyle {  font-family: "Times New Roman", "Times", "serif"; font-size: 10pt; font-style: italic; font-weight: bold; color: #FFFFCC}
  169. -->
  170. </style></head>
  171.  
  172. <body bgcolor="#000000" onLoad="MM_timelinePlay('Timeline1');MM_preloadImages('../image/button_m1.gif','#966481045230');MM_preloadImages('../image/button_l1.gif','#966485601850');MM_preloadImages('../image/button_r1.gif','#966486477970')">
  173. <div id="Layer2" style="position:absolute; left:3; top:0px; width:760px; height:389px; z-index:2"><img src="../image/gen3-bg.gif" width="765" height="391"></div>
  174. <div id="Layer3" style="position:absolute; left:3px; top:308px; width:513px; height:97px; z-index:3"><img src="../image/stage-1.gif" width="775" height="109"></div>
  175. <div id="Layer4" style="position:absolute; left:176px; top:61px; width:23px; height:46px; z-index:7"><a href="general03_1.htm"><img src="../image/sqr-1.jpg" width="139" height="92" name="uThumb001" border="0"></a></div>
  176. <div id="Layer5" style="position:absolute; left:338px; top:61; width:14px; height:25px; z-index:8"><a href="general03_2.htm"><img src="../image/sqr-2.jpg" width="139" height="92" name="uThumb002" border="0"></a></div>
  177. <div id="Layer6" style="position:absolute; left:500px; top:61; width:23px; height:82px; z-index:9"><a href="general03_3.htm"><img src="../image/sqr-3.jpg" width="139" height="93" name="uThumb003" border="0"></a></div>
  178. <div id="Layer7" style="position:absolute; left:282px; top:187px; width:21px; height:37px; z-index:10"><a href="general03_4.htm"><img src="../image/sqr-4.jpg" width="139" height="92" name="uThumb004" border="0"></a></div>
  179. <div id="Layer8" style="position:absolute; left:446px; top:187; width:22px; height:36px; z-index:11"><a href="general03_5.htm"><img src="../image/sqr-5.jpg" width="139" height="92" name="uThumb005" border="0"></a></div>
  180. <div id="Layer9" style="position:absolute; left:610px; top:187; width:16px; height:28px; z-index:12"><a href="general03_6.htm"><img src="../image/sqr-6.jpg" width="139" height="92" name="uThumb006" border="0"></a></div>
  181. <div id="Layer10" style="position:absolute; left:655px; top:18px; width:38px; height:33px; z-index:13"><img src="../image/moon.gif" width="93" height="95"></div>
  182. <div id="Layer11" style="position:absolute; left:665px; top:134px; width:21px; height:38px; z-index:14"><img src="../image/star3.gif" width="32" height="35" name="Image1"></div>
  183. <div id="Layer12" style="position:absolute; left:228px; top:203px; width:5px; height:30px; z-index:15"><img src="../image/star2.gif" width="48" height="53"></div>
  184. <div id="Layer13" style="position:absolute; left:715px; top:118px; width:19px; height:37px; z-index:16"><img src="../image/star1.gif" width="30" height="33"></div>
  185. <div id="Layer14" style="position:absolute; left:337px; top:320px; width:82px; height:74px; z-index:27"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('document.layers[\'Layer14\'].document.uPreviousButton','document.uPreviousButton','../image/button_l1.gif','#966485601850')"><img src="../image/button_l.gif" width="103" height="109" border="0" name="uPreviousButton" alt="Back"></a></div>
  186. <div id="Layer15" style="position:absolute; left:606px; top:317px; width:68px; height:68px; z-index:28"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('document.layers[\'Layer15\'].document.uNextButton','document.uNextButton','../image/button_r1.gif','#966486477970')"><img src="../image/button_r.gif" width="103" height="108" border="0" name="uNextButton" alt="Next"></a></div>
  187. <div id="Layer25" style="position:absolute; left:0; top:430; width:760; height:50; z-index:29; visibility: hidden"> 
  188.   <p id="uSignature" align="left" class="SignStyle">Input signature here!</p>
  189. </div>
  190. <div id="Layer26" style="position:absolute; left:-11; top:-12; width:59; height:72; z-index:6"><img src="../image/windows.gif" width="297" height="412"></div>
  191. <div id="Layer16" style="position:absolute; left:474px; top:330px; width:81px; height:70px; z-index:17"><a href="general03.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('document.layers[\'Layer16\'].document.uHomeButton','document.uHomeButton','../image/button_m1.gif','#966481045230')"><img src="../image/button_m.gif" width="98" height="92" border="0" name="uHomeButton" alt="Home"></a></div>
  192. <div id="Layer17" style="position:absolute; left:15px; top:1px; width:747; height:52; z-index:30"> 
  193.   <p id="uAlbumTitle" align="center" class="AlbumTitleStytle">Dreaming in the Moonlight</p>
  194. </div>
  195. <div id="Layer18" style="position:absolute; left:176px; top:151px; width:138px; height:17px; z-index:19"> 
  196.   <p id="uThumbTitle001" align="center" class="ThumbTitleStyle">Your photo caption goes here!
  197. </p>
  198. </div>
  199. <div id="Layer20" style="position:absolute; left:501px; top:151px; width:138; height:17; z-index:21"> 
  200.   <p id="uThumbTitle003" align="center" class="ThumbTitleStyle">Your photo caption goes here!</p>
  201. </div>
  202. <div id="Layer19" style="position:absolute; left:338px; top:151px; width:138; height:17; z-index:20"> 
  203.   <p id="uThumbTitle002" align="center" class="ThumbTitleStyle">Your photo caption goes here!</p>
  204. </div>
  205. <div id="Layer21" style="position:absolute; left:282px; top:277px; width:138; height:17; z-index:22"> 
  206.   <p id="uThumbTitle004" align="center" class="ThumbTitleStyle">Your photo caption goes here!</p>
  207. </div>
  208. <div id="Layer22" style="position:absolute; left:447px; top:277px; width:138; height:17; z-index:23"> 
  209.   <p id="uThumbTitle005" align="center" class="ThumbTitleStyle">Your photo caption goes here!</p>
  210. </div>
  211. <div id="Layer23" style="position:absolute; left:611px; top:277px; width:138px; height:16px; z-index:24"> 
  212.   <p id="uThumbTitle006" align="center" class="ThumbTitleStyle">Your photo caption goes here!</p>
  213. </div>
  214. <div id="Layer24" style="position:absolute; left:21px; top:366px; width:259px; height:36px; z-index:25"> 
  215.   <p align="left"><a href="http://www.novadevelopment.com" class="Fixed02"> 
  216.      </a></p>
  217. </div>
  218. </body>
  219. </html>
  220.