ÿþ<HTML> <HEAD> <TITLE> Index</TITLE> </HEAD> <SCRIPT LANGUAGE="JavaScript"> //************************************************************** //data //************************************************************** function AnimationData(size){ this.numbFrames=size; this.frames=new Array(size); this.times=new Array(size); } pageLocked=false; numbActiveButtons=4; numbButtons=12; buttonList=new Array(numbButtons); buttonSelected=new Array(numbButtons); buttonsOver=new Array(numbActiveButtons); buttonsOver[0]=false; buttonsOver[1]=false; buttonsOver[2]=false; buttonsOver[3]=false; addressList= new Array(4); addressList[0]="tutorials.html"; addressList[1]="news.html"; addressList[2]="itsfun.html"; addressList[3]="whatamidoing.html"; choiceMade=false; activeButtonList= new Array(numbActiveButtons); imagesLoaded=false; linkToList= new Array(numbActiveButtons); numbAnimations=7; buttonAnimations= new Array(numbAnimations); buttonLeftAnimations= new Array(numbAnimations) buttonBottomAnimations= new Array(numbAnimations) defaultAnimationIndex=1; defaultAnimationEnabled=new Array(numbActiveButtons); loadingAnimation=0; loadedAnimation=0; loadedTextAnimation=0; playLoad=false; playLoaded=false; loadingCurrentFrame=0; totalFramesToLoad=56; animationFramesToLoad=new Array(totalFramesToLoad); currentLoading=0; numbLoadingImages=4; loadingImagesLoaded=0; loadingImagesArray = new Array(numbLoadingImages); loadingImagesNames= new Array(numbLoadingImages); loadingImagesNames[0]="images/loadingText.gif"; loadingImagesNames[1]="images/loading0.gif"; loadingImagesNames[2]="images/loading1.gif"; loadingImagesNames[3]="images/loading2.gif"; var lastClicked=-1; //************************************************************** function bubbleClick(buttonIndex) { if(!pageLocked){ if(buttonList[buttonIndex].activeIndex>=0) { choiceMade=true; pageLocked=true; lastClicked=buttonList[buttonIndex].activeIndex; for(i=0; i<4;i++){ buttonList[activeButtonList[i]].currentFrame=0; if(buttonList[buttonIndex].activeIndex!=i) { document.images[buttonList[activeButtonList[i]].bottomImageOffset].src="images/empty.gif"; defaultAnimationEnabled[i]=false; AniButton(activeButtonList[i], 5); } else{ AniButton(buttonIndex, 6); } } } } } function bubbleOver(buttonIndex) { if(!pageLocked){ if(buttonList[buttonIndex].activeIndex>=0) { document.images[buttonList[buttonIndex].bottomImageOffset].src="images/title"+buttonList[buttonIndex].activeIndex+"On.gif"; buttonsOver[buttonList[buttonIndex].activeIndex]=true; } } } function bubbleOut(buttonIndex) { if(!pageLocked){ if(buttonList[buttonIndex].activeIndex>=0) { document.images[buttonList[buttonIndex].bottomImageOffset].src="images/title"+buttonList[buttonIndex].activeIndex+".gif"; buttonsOver[buttonList[buttonIndex].activeIndex]=false; } } } function createBubbleButton(buttonIndex) { //this.selected=false; this.index=buttonIndex; this.leftImageOffset=document.images.length; this.bottomImageOffset; this.linkTo="nothing.html"; this.activeIndex=-1; this.currentFrame=0; document.write('<TD rowspan=2><IMG src="images/empty.gif" height=127 width=39></TD>'); this.imageOffset=document.images.length; document.write('<TD><IMG src="images/empty.gif" height=104 width=102 onclick="bubbleClick('+ buttonIndex+')" onmouseover="bubbleOver('+buttonIndex+')" onmouseout="bubbleOut('+buttonIndex+')"></TD>'); } function FindRandomPos() { //get the buttons that will be active using random numbers limitNumb=1/numbButtons; for(i=0; i<numbButtons; i++) { buttonSelected[i]=false; } flagNotFound=true; randomPos=-1; for(i=0; i<numbActiveButtons; i++) { flagNotFound=true; while(flagNotFound){ randomPos=-1; Rnumber=Math.random(); for(e=0; e<numbButtons; e++) { if( (Rnumber>=(e*limitNumb)) && (Rnumber<((e+1)*limitNumb)) ) { randomPos=e; } } if( (!buttonSelected[randomPos]) && (randomPos!=-1) ) { buttonSelected[randomPos]=true; activeButtonList[i]=randomPos; flagNotFound=false; //alert(activeButtonList[i]); } } } } function PlayLoaded() { if(playLoaded &&(loadingCurrentFrame<loadedAnimation.numbFrames)) { LOADINGIMG.src=loadedAnimation.frames[loadingCurrentFrame]; LOADINGTEXT.src=loadedTextAnimation.frames[loadingCurrentFrame]; setTimeout("PlayLoaded()", loadedAnimation.times[loadingCurrentFrame++]); } else{ //SetupPage(); } } function PlayLoading() { if(playLoad) { if(loadingCurrentFrame>=loadingAnimation.numbFrames) loadingCurrentFrame=0; LOADINGIMG.src=loadingAnimation.frames[loadingCurrentFrame]; setTimeout("PlayLoading()", loadingAnimation.times[loadingCurrentFrame++]); } else{ LOADINGIMG.src="images/empty.gif"; LOADINGTEXT.src="images/empty.gif"; LoadAnimations(); //playLoaded=true; //loadingCurrentFrame=0; SetupPage(); //setTimeout("PlayLoaded()", 1000); } } function CountLoadingLoop() { if(++currentLoading>=totalFramesToLoad){ imagesLoaded=true; playLoad=false; } } normalImages=new Array(totalFramesToLoad); function LoadingLoop() { for(i=0; i<totalFramesToLoad; i++) { normalImages[i]=new Image(); normalImages[i].onload=CountLoadingLoop; normalImages[i].onerror=CountLoadingLoop; normalImages[i].onabort=CountLoadingLoop; normalImages[i].src=animationFramesToLoad[i]; } } function LoadLoadingAni(){ loadingAnimation=new AnimationData(4); for(i=0; i<loadingAnimation.numbFrames; i++) { loadingAnimation.times[i]=500; } loadingAnimation.frames[0]="images/loading0.gif"; loadingAnimation.frames[1]="images/loading1.gif"; loadingAnimation.frames[2]="images/loading0.gif"; loadingAnimation.frames[3]="images/loading2.gif"; } function LoadImages() { animationFramesToLoad[0]="images/center.gif"; animationFramesToLoad[4]="images/startAni1.gif";animationFramesToLoad[8]="images/startAni5.gif"; animationFramesToLoad[1]="images/defAni0.gif";animationFramesToLoad[5]="images/startAni2.gif";animationFramesToLoad[9]="images/startAniLeft4.gif"; animationFramesToLoad[2]="images/defAni1.gif";animationFramesToLoad[6]="images/startAni3.gif";animationFramesToLoad[10]="images/startAniBottom4.gif"; animationFramesToLoad[3]="images/startAni0.gif";animationFramesToLoad[7]="images/startAni4.gif";animationFramesToLoad[11]="images/empty.gif"; animationFramesToLoad[12]="images/loaded.gif";animationFramesToLoad[13]="images/loaded0.gif";animationFramesToLoad[14]="images/loaded1.gif"; animationFramesToLoad[15]="images/loaded2.gif";animationFramesToLoad[16]="images/loaded3.gif";animationFramesToLoad[17]="images/loaded4.gif"; animationFramesToLoad[18]="images/loaded5.gif";animationFramesToLoad[19]="images/loaded6.gif";animationFramesToLoad[20]="images/loaded7.gif"; animationFramesToLoad[21]="images/loadedText.gif";animationFramesToLoad[22]="images/loadedText0.gif";animationFramesToLoad[23]="images/loadedText1.gif"; animationFramesToLoad[24]="images/loadedText2.gif";animationFramesToLoad[25]="images/loadedText3.gif";animationFramesToLoad[26]="images/loadedText4.gif"; animationFramesToLoad[27]="images/reject0.gif";animationFramesToLoad[28]="images/reject1.gif";animationFramesToLoad[29]="images/reject2.gif"; animationFramesToLoad[30]="images/reject3.gif";animationFramesToLoad[31]="images/reject4.gif";animationFramesToLoad[32]="images/reject5.gif"; animationFramesToLoad[33]="images/reject6.gif";animationFramesToLoad[34]="images/mofyAniTwo0.gif";animationFramesToLoad[35]="images/mofyAniTwo1.gif"; animationFramesToLoad[36]="images/mofyAniTwo2.gif";animationFramesToLoad[37]="images/mofyAniThree0.gif";animationFramesToLoad[38]="images/mofyAniThree1.gif"; animationFramesToLoad[39]="images/mofyAniThree2.gif";animationFramesToLoad[40]="images/mofyAniOne0.gif";animationFramesToLoad[41]="images/mofyAniOne1.gif"; animationFramesToLoad[42]="images/mofyAniOne2.gif";animationFramesToLoad[43]="images/mofyAniFour0.gif";animationFramesToLoad[44]="images/mofyAniFour1.gif"; animationFramesToLoad[45]="images/mofyAniFour2.gif";animationFramesToLoad[46]="images/mofyAniFour3.gif";animationFramesToLoad[47]="images/choice0.gif"; animationFramesToLoad[48]="images/title0.gif"; animationFramesToLoad[49]="images/title0On.gif"; animationFramesToLoad[50]= "images/title1.gif"; animationFramesToLoad[51]="images/title1On.gif"; animationFramesToLoad[52]="images/title2.gif"; animationFramesToLoad[53]="images/title2On.gif"; animationFramesToLoad[54]="images/title3.gif"; animationFramesToLoad[55]="images/title3On.gif"; LoadingLoop(); } function SetButtons() { for(i=0; i<numbActiveButtons; i++) { // buttonList[activeButtonList[i]].selected=true; buttonList[activeButtonList[i]].linkTo=linkToList[i]; buttonList[activeButtonList[i]].activeIndex=i; } } animationsFinished=0; function animationFinished() { if(++animationsFinished==4) if(lastClicked>=0 && lastClicked<4) open( addressList[lastClicked], "_top"); } function AniButton(buttonIndex, animationIndex) { if(!choiceMade){ if( (animationIndex>0) && (defaultAnimationEnabled[buttonList[buttonIndex].activeIndex]==false) ){ return; } if(buttonList[buttonIndex].currentFrame<buttonAnimations[animationIndex].numbFrames) { document.images[buttonList[buttonIndex].imageOffset].src=buttonAnimations[animationIndex].frames[buttonList[buttonIndex].currentFrame]; document.images[buttonList[buttonIndex].leftImageOffset].src=buttonLeftAnimations[animationIndex].frames[buttonList[buttonIndex].currentFrame]; if(!buttonsOver[buttonList[buttonIndex].activeIndex]) document.images[buttonList[buttonIndex].bottomImageOffset].src=buttonBottomAnimations[animationIndex].frames[buttonList[buttonIndex].currentFrame]; setTimeout("AniButton("+buttonIndex+","+animationIndex+")", buttonAnimations[animationIndex].times[buttonList[buttonIndex].currentFrame]); buttonList[buttonIndex].currentFrame++; } else{ if(animationIndex==0) { defaultAnimationEnabled[buttonList[buttonIndex].activeIndex]=true; } buttonList[buttonIndex].currentFrame=0; if(defaultAnimationEnabled[buttonList[buttonIndex].activeIndex]) { if(buttonList[buttonIndex].activeIndex==0) AniButton(buttonIndex, 1); else if(buttonList[buttonIndex].activeIndex==1) AniButton(buttonIndex, 2); else if(buttonList[buttonIndex].activeIndex==2) AniButton(buttonIndex, 3); else if(buttonList[buttonIndex].activeIndex==3) AniButton(buttonIndex, 4); } } } else if(animationIndex==5 || animationIndex==6) { if(buttonList[buttonIndex].currentFrame<buttonAnimations[animationIndex].numbFrames) { document.images[buttonList[buttonIndex].imageOffset].src=buttonAnimations[animationIndex].frames[buttonList[buttonIndex].currentFrame]; document.images[buttonList[buttonIndex].leftImageOffset].src=buttonLeftAnimations[animationIndex].frames[buttonList[buttonIndex].currentFrame]; //document.images[buttonList[buttonIndex].bottomImageOffset].src=buttonBottomAnimations[animationIndex].frames[buttonList[buttonIndex].currentFrame]; setTimeout("AniButton("+buttonIndex+","+animationIndex+")", buttonAnimations[animationIndex].times[buttonList[buttonIndex].currentFrame]); buttonList[buttonIndex].currentFrame++; } else{ animationFinished(); } } } function StartButtons() { for(i=0; i<numbActiveButtons; i++) { buttonList[activeButtonList[i]].currentFrame=0; setTimeout("AniButton("+activeButtonList[i]+", 0)", (300*i)); } } function LoadAnimations() { loadedAnimation=new AnimationData(15); loadedTextAnimation=new AnimationData(15); for(i=0; i<(loadedAnimation.numbFrames); i++) { loadedTextAnimation.frames[i]="images/loadedText.gif"; loadedAnimation.times[i]=150; loadedTextAnimation.times[i]=150; } loadedTextAnimation.frames[14]="images/empty.gif"; for(i=9; i<14; i++ ){ loadedTextAnimation.frames[i]="images/loadedText"+(i-9)+".gif"; } loadedAnimation.frames[0]="images/loaded0.gif";loadedAnimation.frames[1]="images/loaded1.gif";loadedAnimation.frames[2]="images/loaded2.gif"; loadedAnimation.frames[3]="images/loaded3.gif";loadedAnimation.frames[4]="images/loaded2.gif";loadedAnimation.frames[5]="images/loaded3.gif"; loadedAnimation.frames[6]="images/loaded2.gif";loadedAnimation.frames[7]="images/loaded4.gif";loadedAnimation.frames[8]="images/loaded5.gif"; loadedAnimation.frames[9]="images/loaded6.gif";loadedAnimation.frames[10]="images/loaded5.gif";loadedAnimation.frames[11]="images/loaded6.gif"; loadedAnimation.frames[12]="images/loaded5.gif";loadedAnimation.frames[13]="images/loaded7.gif";loadedAnimation.frames[14]="images/empty.gif"; loadedAnimation.times[1]=300; loadedTextAnimation.times[1]=300; loadedAnimation.frames[i]="images/empty.gif"; loadedTextAnimation.frames[i]="images/empty.gif"; loadedAnimation.times[i]=500; loadedTextAnimation.times[i]=500; buttonAnimations[0]= new AnimationData(5); buttonLeftAnimations[0]=new AnimationData(5); buttonBottomAnimations[0]=new AnimationData(5); for(i=0; i<buttonAnimations[0].numbFrames; i++) { buttonAnimations[0].frames[i]="images/startAni"+i+".gif"; buttonLeftAnimations[0].frames[i]=buttonBottomAnimations[0].frames[i]="images/empty.gif"; buttonAnimations[0].times[i]=buttonLeftAnimations[0].times[i]=buttonBottomAnimations[0].times[i]=50; } buttonLeftAnimations[0].frames[4]="images/startAniLeft4.gif"; buttonBottomAnimations[0].frames[4]="images/startAniBottom4.gif"; buttonAnimations[1]= new AnimationData(4); buttonLeftAnimations[1]=new AnimationData(4); buttonBottomAnimations[1]=new AnimationData(4); for(i=0; i<(buttonAnimations[1].numbFrames-1); i++) { buttonAnimations[1].frames[i]="images/mofyAniOne"+i+".gif"; buttonLeftAnimations[1].frames[i]="images/empty.gif"; buttonBottomAnimations[1].frames[i]="images/title0.gif"; buttonAnimations[1].times[i]=buttonLeftAnimations[1].times[i]=buttonBottomAnimations[1].times[i]=700; } buttonBottomAnimations[1].frames[3]="images/title0.gif"; buttonAnimations[1].frames[3]="images/mofyAniOne1.gif"; buttonLeftAnimations[1].frames[3]="images/empty.gif"; buttonAnimations[1].times[3]=buttonLeftAnimations[1].times[3]=buttonBottomAnimations[1].times[3]=200; buttonAnimations[1].times[1]=buttonLeftAnimations[1].times[1]=buttonBottomAnimations[1].times[1]=200; buttonAnimations[2]= new AnimationData(4); buttonLeftAnimations[2]=new AnimationData(4); buttonBottomAnimations[2]=new AnimationData(4); for(i=0; i<(buttonAnimations[2].numbFrames-1); i++) { buttonAnimations[2].frames[i]="images/mofyAniTwo"+i+".gif"; buttonLeftAnimations[2].frames[i]="images/empty.gif"; buttonBottomAnimations[2].frames[i]="images/title1.gif"; buttonAnimations[2].times[i]=buttonLeftAnimations[2].times[i]=buttonBottomAnimations[2].times[i]=700; } buttonBottomAnimations[2].frames[3]="images/title1.gif"; buttonAnimations[2].frames[3]="images/mofyAniTwo1.gif"; buttonLeftAnimations[2].frames[3]="images/empty.gif"; buttonAnimations[2].times[3]=buttonLeftAnimations[2].times[3]=buttonBottomAnimations[2].times[3]=200; buttonAnimations[2].times[1]=buttonLeftAnimations[2].times[1]=buttonBottomAnimations[2].times[1]=200; buttonAnimations[3]= new AnimationData(4); buttonLeftAnimations[3]=new AnimationData(4); buttonBottomAnimations[3]=new AnimationData(4); buttonAnimations[3].frames[0]=buttonAnimations[3].frames[2]="images/mofyAniThree0.gif"; //buttonLeftAnimations[3].frames[0]=buttonBottomAnimations[3].frames[0]="images/empty.gif"; //buttonLeftAnimations[3].frames[2]=buttonBottomAnimations[3].frames[2]="images/empty.gif"; buttonAnimations[3].times[0]=buttonLeftAnimations[3].times[0]=buttonBottomAnimations[3].times[0]=700; buttonAnimations[3].times[2]=buttonLeftAnimations[3].times[2]=buttonBottomAnimations[3].times[2]=700; buttonAnimations[3].frames[1]="images/mofyAniThree1.gif"; //buttonLeftAnimations[3].frames[1]=buttonBottomAnimations[3].frames[1]="images/empty.gif"; buttonAnimations[3].times[1]=buttonLeftAnimations[3].times[1]=buttonBottomAnimations[3].times[1]=500; buttonAnimations[3].frames[3]="images/mofyAniThree2.gif"; //buttonLeftAnimations[3].frames[3]=buttonBottomAnimations[3].frames[3]="images/empty.gif"; buttonAnimations[3].times[3]=buttonLeftAnimations[3].times[3]=buttonBottomAnimations[3].times[3]=500; for(i=0; i<buttonAnimations[3].numbFrames; i++) { buttonLeftAnimations[3].frames[i]="images/empty.gif"; buttonBottomAnimations[3].frames[i]="images/title2.gif"; } buttonAnimations[4]= new AnimationData(12); buttonLeftAnimations[4]=new AnimationData(12); buttonBottomAnimations[4]=new AnimationData(12); for(i=0; i<buttonAnimations[4].numbFrames; i++) { buttonLeftAnimations[4].frames[i]="images/empty.gif"; buttonBottomAnimations[4].frames[i]="images/title3.gif" buttonAnimations[4].times[i]=buttonLeftAnimations[4].times[i]=buttonBottomAnimations[4].times[i]=300; } buttonAnimations[4].frames[0]=buttonAnimations[4].frames[2]=buttonAnimations[4].frames[4]="images/mofyAniFour0.gif"; buttonAnimations[4].frames[1]=buttonAnimations[4].frames[3]=buttonAnimations[4].frames[5]=buttonAnimations[4].frames[11]="images/mofyAniFour1.gif"; buttonAnimations[4].times[5]=1000; buttonAnimations[4].frames[6]=buttonAnimations[4].frames[8]=buttonAnimations[4].frames[10]="images/mofyAniFour2.gif"; buttonAnimations[4].frames[7]=buttonAnimations[4].frames[9]="images/mofyAniFour3.gif"; buttonAnimations[4].times[9]=1000; buttonAnimations[5]= new AnimationData(8); buttonLeftAnimations[5]=new AnimationData(8); buttonBottomAnimations[5]=new AnimationData(8); for(i=0; i<buttonAnimations[5].numbFrames; i++) { buttonAnimations[5].frames[i]="images/reject"+i+".gif"; buttonLeftAnimations[5].frames[i]=buttonBottomAnimations[5].frames[i]="images/empty.gif"; buttonAnimations[5].times[i]=buttonLeftAnimations[5].times[i]=buttonBottomAnimations[5].times[i]=70; } buttonAnimations[5].frames[7]="images/empty.gif"; buttonAnimations[6]= new AnimationData(1); buttonLeftAnimations[6]=new AnimationData(1); buttonBottomAnimations[6]=new AnimationData(1); for(i=0; i<buttonAnimations[6].numbFrames; i++) { buttonAnimations[6].frames[i]="images/choice"+i+".gif"; buttonLeftAnimations[6].frames[i]=buttonBottomAnimations[6].frames[i]="images/empty.gif"; buttonAnimations[6].times[i]=buttonLeftAnimations[6].times[i]=buttonBottomAnimations[6].times[i]=1400; } } function SetupPage() { if(imagesLoaded){ FindRandomPos(); SetButtons(); StartButtons(); } else{ LoadImages(); } } function CountLoadingImages() { if(++loadingImagesLoaded>=numbLoadingImages) { LoadLoadingAni(); LOADINGTEXT.src="images/loadingText.gif"; loadingCurrentFrame=0; playLoad=true; PlayLoading(); imagesLoaded=false; SetupPage(); } } loadingAniImages=new Array(numbLoadingImages); function LoadLoadingImages() { for(i=0; i<numbLoadingImages; i++) { loadingAniImages[i]= new Image(); loadingAniImages[i].onload=CountLoadingImages; loadingAniImages[i].onerror=CountLoadingImages; loadingAniImages[i].onabort=CountLoadingImages; loadingAniImages[i].src=loadingImagesNames[i]; } } //*************************************************** //initalization //*************************************************** linkToList[0]="tutorials.html"; linkToList[1]="news.html"; linkToList[2]="whatamidoing.html"; linkToList[3]="funstuff.html"; for(i=0; i<numbActiveButtons; i++) { defaultAnimationEnabled[i]=false; } //*************************************************** </SCRIPT> <BODY BGCOLOR=#FFFFFF > <TABLE align=center> <TR><TD><IMG src="images/empty.gif" NAME="LOADINGIMG" height=100 width=100><IMG src="images/empty.gif" NAME="LOADINGTEXT" height =100 width=200></TD></TR> </TABLE> <TABLE ALIGN=center CELLSPACING=0 CELLPADDING=0> <SCRIPT> document.write('<TR >'); buttonList[0]=new createBubbleButton(0); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[1]=new createBubbleButton(1); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[2]=new createBubbleButton(2); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[3]=new createBubbleButton(3); document.write('</TR>'); document.write('<TR>'); buttonList[0].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[1].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[2].bottomImageOffset=document.images.length; document.write('<TD><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[3].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); document.write('</TR>'); document.write('<TR >'); buttonList[4]=new createBubbleButton(4); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[5]=new createBubbleButton(5); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[6]=new createBubbleButton(6); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[7]=new createBubbleButton(7); document.write('</TR>'); document.write('<TR>'); buttonList[4].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[5].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[6].bottomImageOffset=document.images.length; document.write('<TD><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[7].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); document.write('</TR>'); document.write('<TR >'); buttonList[8]=new createBubbleButton(8); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[9]=new createBubbleButton(9); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[10]=new createBubbleButton(10); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[11]=new createBubbleButton(11); document.write('</TR>'); document.write('<TR>'); buttonList[8].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[9].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[10].bottomImageOffset=document.images.length; document.write('<TD><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[11].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); document.write('</TR>'); /*document.write('<TR >'); buttonList[12]=new createBubbleButton(12); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[13]=new createBubbleButton(13); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[14]=new createBubbleButton(14); document.write('<TD rowspan=2 ><IMG src="images/empty.gif" width=20 height=127></TD>'); buttonList[15]=new createBubbleButton(15); document.write('</TR>'); document.write('<TR>'); buttonList[12].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[13].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[14].bottomImageOffset=document.images.length; document.write('<TD><IMG src="images/empty.gif" width=102 height=23></TD>'); buttonList[15].bottomImageOffset=document.images.length; document.write('<TD ><IMG src="images/empty.gif" width=102 height=23></TD>'); document.write('</TR>');*/ LoadLoadingImages(); </SCRIPT> </TABLE> </BODY> </HTML>
Site hosted by Angelfire.com: Build your free website today!