home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>Season's Greetings</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:#FFFFFF;
- }
-
-
- .ParentLayer {
- border-color:green;
- border-width:0px;
- ; border: 0px green groove}
-
- .ImageHolder {
- 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:#660000;
- }
-
- .SoundClip {
- cursor:hand;
- position:relative;
- }
- </style>
-
- <script language="JavaScript">
- <!--
- 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_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_timelineStop(tmLnName) { //v1.2
- //Copyright 1997 Macromedia, Inc. All rights reserved.
- if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
- if (tmLnName == null) //stop all
- for (var i=0; i<document.MM_Time.length; i++) document.MM_Time[i].ID = null;
- else document.MM_Time[tmLnName].ID = null; //stop one
- }
-
- 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(2);
- 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 = 40;
- document.MM_Time[0][0].value = "MM_timelineGoto('Timeline1','1')";
- document.MM_Time[0][1] = new String("sprite");
- document.MM_Time[0][1].slot = 1;
- if (ns)
- document.MM_Time[0][1].obj = document["Layer2"];
- else
- document.MM_Time[0][1].obj = document.all ? document.all["Layer2"] : null;
- document.MM_Time[0][1].keyFrames = new Array(1, 15, 25);
- document.MM_Time[0][1].values = new Array(2);
- document.MM_Time[0][1].values[0] = new Array(672,654,635,617,599,580,562,544,525,506,486,464,440,416,389,342,293,241,187,129,69,8,-52,-112,-172);
- document.MM_Time[0][1].values[0].prop = "left";
- document.MM_Time[0][1].values[1] = new Array(129,129,129,130,130,130,130,130,130,129,128,126,124,121,117,109,100,89,78,66,52,39,26,12,-1);
- 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].lastFrame = 40;
- document.MM_Time[1] = new Array(5);
- 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 = 1;
- document.MM_Time[1][0].value = "MM_showHideLayers('document.layers[\\\'Layer7\\\']','document.all[\\\'Layer7\\\']','show','document.layers[\\\'Layer8\\\']','document.all[\\\'Layer8\\\']','hide','document.layers[\\\'Layer9\\\']','document.all[\\\'Layer9\\\']','hide','document.layers[\\\'Layer10\\\']','document.all[\\\'Layer10\\\']','hide')";
- document.MM_Time[1][1] = new String("behavior");
- document.MM_Time[1][1].frame = 5;
- document.MM_Time[1][1].value = "MM_showHideLayers('document.layers[\\\'Layer7\\\']','document.all[\\\'Layer7\\\']','hide','document.layers[\\\'Layer8\\\']','document.all[\\\'Layer8\\\']','show','document.layers[\\\'Layer9\\\']','document.all[\\\'Layer9\\\']','hide','document.layers[\\\'Layer10\\\']','document.all[\\\'Layer10\\\']','hide')";
- document.MM_Time[1][2] = new String("behavior");
- document.MM_Time[1][2].frame = 10;
- document.MM_Time[1][2].value = "MM_showHideLayers('document.layers[\\\'Layer7\\\']','document.all[\\\'Layer7\\\']','hide','document.layers[\\\'Layer8\\\']','document.all[\\\'Layer8\\\']','hide','document.layers[\\\'Layer9\\\']','document.all[\\\'Layer9\\\']','show','document.layers[\\\'Layer10\\\']','document.all[\\\'Layer10\\\']','hide')";
- document.MM_Time[1][3] = new String("behavior");
- document.MM_Time[1][3].frame = 15;
- document.MM_Time[1][3].value = "MM_showHideLayers('document.layers[\\\'Layer7\\\']','document.all[\\\'Layer7\\\']','hide','document.layers[\\\'Layer8\\\']','document.all[\\\'Layer8\\\']','hide','document.layers[\\\'Layer9\\\']','document.all[\\\'Layer9\\\']','hide','document.layers[\\\'Layer10\\\']','document.all[\\\'Layer10\\\']','show')";
- document.MM_Time[1][4] = new String("behavior");
- document.MM_Time[1][4].frame = 18;
- document.MM_Time[1][4].value = "MM_timelineGoto('Timeline2','1')";
- document.MM_Time[1].lastFrame = 18;
- 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/Jingle Bells.mid" repeat="1" loop="-1">
- <body bgcolor="#FFFFFF" background="../image/strsb-1.jpg" onLoad="MM_timelinePlay('Timeline1')">
- <div id="Layer1" style="position:absolute; left:55px; top:40px; width:532px; height:325px; z-index:1" class="ParentLayer">
- <a id="Link1" name="">
- <img id="uImage01" src="../Image/house-bk.jpg" width="662" height="483" class="Fixed02">
- </a>
- </div>
-
- <div id="Layer2" style="position:absolute; left:672px; top:129px; width:121px; height:60px; z-index:2" class="ParentLayer">
- <a id="Link2" name="">
- <img id="uImage02" src="../image/snta-1.gif" width="187" height="69" class="Dynamic01">
- </a>
- </div>
- <div id="Layer3" style="position:absolute; left:222px; top:211px; width:30px; height:30px; z-index:11" class="ParentLayer">
- <a id="Link3" name="">
- <img id="uImage03" src="../Image/photo.jpg" width="287" height="192" name="uImage03;287;192" class="ImageHolder">
- </a>
- </div>
- <div id="Layer4" style="position:absolute; left:218px; top:207px; width:295px; height:200px; z-index:3; background-color: #008400; layer-background-color: #008400; border: 1px none #000000" class="ParentLayer">
- <p></div>
- <div id="Layer5" style="position:absolute; left:507px; top:305px; width:77px; height:110px; z-index:5" class="ParentLayer">
- <A id="Link4" onMouseOver="MM_timelinePlay('Timeline2')" onMouseOut="MM_timelineStop('Timeline2')">
- <img id="uImage04" src="../image/snowman.gif" width="118" height="189" border="0" class="Fixed02">
- </A>
- </div>
- <div id="Layer6" style="position:absolute; left:311px; top:136px; width:63px; height:51px; z-index:6" class="ParentLayer">
- <a id="Link5" name="">
- <img id="uImage05" src="../image/bell.gif" width="80" height="74" class="Fixed02">
- </a>
- </div>
- <div id="Layer7" style="position:absolute; left:624px; top:412px; width:38px; height:56px; z-index:7; visibility: hidden" class="ParentLayer">
- <a id="Link6" name="">
- <img id="uImage06" src="../image/dog4.gif" width="44" height="71" class="Dynamic01">
- </a>
- </div>
- <div id="Layer8" style="position:absolute; left:587px; top:461px; width:58px; height:57px; z-index:8; visibility: hidden" class="ParentLayer">
- <a id="Link7" name="">
- <img id="uImage07" src="../image/dog1.gif" width="83" height="58" class="Dynamic01">
- </a>
- </div>
- <div id="Layer9" style="position:absolute; left:519px; top:431px; width:75px; height:56px; z-index:9; visibility: hidden" class="ParentLayer">
- <a id="Link8" name="">
- <img id="uImage08" src="../image/dog2.gif" width="62" height="86" class="Dynamic01">
- </a>
- </div>
- <div id="Layer10" style="position:absolute; left:468px; top:404px; width:60px; height:64px; z-index:10; visibility: hidden" class="ParentLayer">
- <a id="Link9" name="">
- <img id="uImage09" src="../image/dog3.gif" width="61" height="76" class="Fixed01">
- </a>
- </div>
-
- <div id="Layer12" class="ParentLayer" style="position:absolute; width:592px; height:70px; z-index:67; left: 121px; top: 0px">
- <div align="center">
- <a id="Link10" name="">
- <p id="uText01" class="TextHolder01">Season's Greetings
- </a>
- </div>
- </div>
- <div id="Layer13" class="ParentLayer" style="position:absolute; width:300px; height:21px; z-index:66; left: 215px; top: 537px">
- <div align="center" >
- <a id="Link11" name="http://www.novadevelopment.com">
- <p id="uLogo01" align="right" class="Fixed01">
- </a>
- </div>
- </div>
- <div id="Layer14" class="ParentLayer" style="position:absolute; width:500px; height:30px; z-index:65; left: 129px; top: 483px">
- <div align="center">
- <a id="Link14" name="">
- <p id="uText02" class="TextHolder02">Warmest wishes from our family to your family.
- </a>
- </div>
- </div>
-
- </body>
- <script language="JavaScript" src="../../WebCard.js">
- </script>
- </html>
-