Hello Everyone,
Quick history....Im a systems engineer, total newbie to web dev.


Ive been trying to maintain a memorial website that we had created when my sister passed away. It was hosted somewhere but the person who made it couldn't maintain it anymore, so I downloaded all of the pages and rebuilt it on my linux server. Heres the site:

http://triciajean.com

If you poke around on there you will see some pages that have text that says click here for more pictures, like on the growing up page, and the baby pictures page.

Thats my problem, the links dont work.

The pages were created with Freeway, and alot of javascript in there that I dont understand. I have all of the pictures in the directory , no clue why they wont load?

Can anyone maybe help me out? Ill post the javascript that I think is the problem:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head><title>Baby Pictures</title>
<meta name="GENERATOR" content="Freeway 4 Pro 4.2.2"><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><style type="text/css">
body { margin-left:0px; margin-right:0px; margin-top:0px; background-color:#fff; background-image:url(Tricia-266pixels.jpg) }
p:first-child { margin-top:0px }
table { empty-cells:hide }
._sp { font-size:1px; visibility:hidden }
._lp { margin-bottom:0px }

</style>

<script language="javascript">
var ft_target1 = 0;
function NewSlide(direction,wrap) {
        var arr = new Array(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14);
        var obj;
        if (arr.length > 0)     {
                if (direction > arr.length){ ft_target1=arr.length-1 }
                else if (direction < -arr.length) ft_target1 = 1;
                else {
                ft_target1 = ft_target1 + direction;
                if (ft_target1<1){ if (wrap) ft_target1=arr.length; else ft_target1=1; }
                else if (ft_target1>=arr.length){ if (wrap){ft_target1=1;} else {ft_target1=arr.length-1;} }
                }
                targetnumber = arr[ft_target1];

                if (top.frames.length) {
                        for (i = 0 ; i != top.frames.length ; i++) {
                                obj = eval("top.frames[" + i + "].window.FT_Indigo");
                                if (obj != null) for (j in obj)
                                        obj[j](targetnumber, 1);
                        obj = eval('top.FT_Indigo');
                        if (obj != null) for (j in obj)
                                obj[j](targetnumber, 1);
                        }
                }
                else {
                        obj = eval('window.FT_Indigo');
                        if (obj != null) for (j in obj)
                                obj[j](targetnumber, 1);
                }
         }
}

</script><script type="text/javascript">//<![CDATA[

var fwIsNetscape = navigator.appName == 'Netscape';

function FWLHitSwap(layer,name,num)
{
        var image = arguments[num+3];
        if (document.images && image)
        {
                var uselayers = fwIsNetscape && document.layers && layer != '';
                var hld;
                if (uselayers)
                        hld = document.layers[layer].document;
                else
                        hld = (document.all) ? document.all : document;
                hld[name].src = FWLoad(image);
        }
}

fwLoad = new Object;
function FWLoad(image)
{
        if (!document.images)
                return null;
        if (!fwLoad[image])
        {
                fwLoad[image]=new image;
                fwLoad[image].src=image;
        }
        return fwLoad[image].src;
}

function
FWPreload(){FWLoad("baby3.jpeg");FWLoad("baby1aa.jpg");FWLoad("baby4.jpg");FWLoad("baby5.jpg");FWLoad("baby6.jpg");FWLoad("baby7.jpg");FWLoad("baby8.jpg");F
href="http://guestbook.pax.nu/cgi-local/guest.cgi?book38120"><area alt="" coords="483,54,518,67"
href="http://www.triciajean.com/eulogy.html"><area alt="" coords="471,58,475,61"
href="http://www.triciajean.com/accident2a.html"><area alt="" coords="345,55,463,64"
href="http://www.triciajean.com/teenyears.html"><area alt="" coords="202,54,337,64"
href="http://www.triciajean.com/triciahorses.html"><area alt="" coords="107,54,198,67"
href="http://www.triciajean.com/family.html"><area alt="" coords="436,38,573,51"
href="http://www.triciajean.com/talents.html"><area alt="" coords="353,38,432,51"
href="http://www.triciajean.com/schooldays.html"><area alt="" coords="238,39,345,51"
href="http://www.triciajean.com/growingup.html"><area alt="" coords="104,38,226,51"
href="http://www.triciajean.com/babypictures.html"><area alt="" coords="52,39,100,48"
href="http://www.triciajean.com/kmiotek.html"></map></div><a class="abp-objtab"
href="http://www.apple.com/qtactivex/qtplugin.cab" style="padding-left: 0px;"></a><a class="abp-objtab"
href="http://www.triciajean.com/WinnieThePooha.mid" style="padding-left: 0px;"></a><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="ht
document.write('<EMBED SRC="WinnieThePooha.mid" HIDDEN="true" LOOP="True" AUTOPLAY="true" autostart="true">');function FWImage_Indigo(chain,msg){if (chain==

Thats actually an entire page, I cut that from putty and I think alot got cut off. Ill repost it when I get home if anyone thinks they can help!

Well thanks alot!

Recommended Answers

All 7 Replies

Mekmiotek,

At line 71 try replacing fwLoad[image]=new image; with fwLoad[image]=new Image(); .

Airshow

Thanks for looking Airshow, but that fix di not work :(

Heres the entire page, its ridiculously long for some reason

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head><title>Baby Pictures</title>
<meta name="GENERATOR" content="Freeway 4 Pro 4.2.2"><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><style type="text/css">
body { margin-left:0px; margin-right:0px; margin-top:0px; background-color:#fff; background-image:url(Tricia-266pixels.jpg) }
p:first-child { margin-top:0px }
table { empty-cells:hide }
._sp { font-size:1px; visibility:hidden }
._lp { margin-bottom:0px }

</style>

<script language="javascript">
var ft_target1 = 0;
function NewSlide(direction,wrap) {
	var arr = new Array(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14);
	var obj;
	if (arr.length > 0)	{
		if (direction > arr.length){ ft_target1=arr.length-1 }
		else if (direction < -arr.length) ft_target1 = 1;
		else {
		ft_target1 = ft_target1 + direction;
		if (ft_target1<1){ if (wrap) ft_target1=arr.length; else ft_target1=1; }
		else if (ft_target1>=arr.length){ if (wrap){ft_target1=1;} else {ft_target1=arr.length-1;} }
		}
		targetnumber = arr[ft_target1];
		
		if (top.frames.length) {
			for (i = 0 ; i != top.frames.length ; i++) {
				obj = eval("top.frames[" + i + "].window.FT_Indigo");
				if (obj != null) for (j in obj)
					obj[j](targetnumber, 1);
			obj = eval('top.FT_Indigo');
			if (obj != null) for (j in obj)
				obj[j](targetnumber, 1);
			}
		}
		else {
			obj = eval('window.FT_Indigo');
			if (obj != null) for (j in obj)
				obj[j](targetnumber, 1);
		}
	 }
}

</script><script type="text/javascript">//<![CDATA[

var fwIsNetscape = navigator.appName == 'Netscape';

function FWLHitSwap(layer,name,num)
{
	var image = arguments[num+3];
	if (document.images && image)
	{
		var uselayers = fwIsNetscape && document.layers && layer != '';
		var hld;
		if (uselayers)
			hld = document.layers[layer].document;
		else
			hld = (document.all) ? document.all : document;
		hld[name].src = FWLoad(image);
	}
}

fwLoad = new Object;
function FWLoad(image)
{
	if (!document.images)
		return null;
	if (!fwLoad[image])
	{
		fwLoad[image]=new Image();
		fwLoad[image].src=image;
	}
	return fwLoad[image].src;
}

function
FWPreload(){FWLoad("baby3.jpeg");FWLoad("baby1aa.jpg");FWLoad("baby4.jpg");FWLoad("baby5.jpg");FWLoad("baby6.jpg");FWLoad("baby7.jpg");FWLoad("baby8.jpg");FWLoad("baby9.jpg");FWLoad("baby10.jpg");FWLoad("baby11.jpg");FWLoad("baby12.jpg");FWLoad("baby13.jpg");FWLoad("baby14.jpg");FWLoad("baby1aa.jpeg");FWLoad("baby3.jpg");}//]]></script></head><body onload="FWPreload()"><div id="PageDiv" style="margin: auto; position: relative; width: 650px; height: 100%;"><table border="0" cellpadding="0" cellspacing="0" width="641"><tbody><tr valign="top"><td colspan="10" height="7"></td><td height="7"></td></tr><tr valign="top"><td colspan="2" height="2"></td><td colspan="8" height="2" valign="bottom"><img src="babypictures_files/item2bh.gif" alt="" border="0" height="2" width="632"></td><td height="2"></td></tr><tr valign="top"><td rowspan="2" height="148"></td><td colspan="2" rowspan="2" height="148"><img src="babypictures_files/halo.gif" alt="" border="0" height="148" width="137"></td><td colspan="7" height="81" valign="middle"><img src="babypictures_files/item2d.gif" alt="" border="0" height="81" width="496"></td><td height="81"></td></tr><tr valign="top"><td height="67" valign="middle"><img src="babypictures_files/item2e.gif" alt="" border="0" height="67" width="3"></td><td colspan="5" rowspan="2" height="84"><img src="babypictures_files/birdsribbon.gif" alt="" border="0" height="84" width="430"></td><td rowspan="2" height="84" valign="middle"><img src="babypictures_files/item2f.gif" alt="" border="0" height="84" width="63"></td><td height="67"></td></tr><tr valign="top"><td colspan="2" rowspan="6" height="443"></td><td colspan="2" height="17" valign="middle"><img src="babypictures_files/item2g.gif" alt="" border="0" height="17" width="139"></td><td height="17"></td></tr><tr valign="top"><td colspan="8" height="2" valign="middle"><img src="babypictures_files/item2h.gif" alt="" border="0" height="2" width="632"></td><td height="2"></td></tr><tr valign="top"><td colspan="3" height="290" valign="middle"><img src="babypictures_files/item2i.gif" alt="" border="0" height="290" width="213"></td><td colspan="3" height="290"><img src="babypictures_files/baby3.jpg" alt="" id="img1" border="0" height="290" width="232"></td><td colspan="2" height="290" valign="middle"><img src="babypictures_files/item2j.gif" alt="" border="0" height="290" width="187"></td><td height="290"></td></tr><tr valign="top"><td colspan="8" height="6" valign="middle"><img src="babypictures_files/item2k.gif" alt="" border="0" height="6" width="632"></td><td height="6"></td></tr><tr valign="top"><td colspan="4" height="16" valign="middle"><img src="babypictures_files/item2l.gif" alt="" border="0" height="16" width="242"></td><td height="16"><a href="javascript:NewSlide(1,true);"><img name="FR_item3" src="babypictures_files/item3.gif" alt="" border="0" height="16" width="188"></a></td><td colspan="3" height="16" valign="middle"><img src="babypictures_files/item2m.gif" alt="" border="0" height="16" width="202"></td><td height="16"></td></tr><tr valign="top"><td colspan="8" height="112"><img src="babypictures_files/item2n.gif" alt="" usemap="#map1" border="0" height="112" width="632"></td><td height="112"></td></tr><tr class="_sp"><td height="1" width="7"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="7"></td><td height="1" width="1"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="1"></td><td height="1" width="136"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="136"></td><td height="1" width="3"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="3"></td><td height="1" width="74"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="74"></td><td height="1" width="29"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="29"></td><td height="1" width="188"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="188"></td><td height="1" width="15"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="15"></td><td height="1" width="124"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="124"></td><td height="1" width="63"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="63"></td><td height="1" width="1"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="1"></td></tr></tbody></table><map name="map1"><area alt="" coords="271,69,354,79"
href="http://guestbook.pax.nu/cgi-local/guest.cgi?book38120"><area alt="" coords="483,54,518,67"
href="http://www.triciajean.com/eulogy.html"><area alt="" coords="471,58,475,61"
href="http://www.triciajean.com/accident2a.html"><area alt="" coords="345,55,463,64"
href="http://www.triciajean.com/teenyears.html"><area alt="" coords="202,54,337,64"
href="http://www.triciajean.com/triciahorses.html"><area alt="" coords="107,54,198,67"
href="http://www.triciajean.com/family.html"><area alt="" coords="436,38,573,51"
href="http://www.triciajean.com/talents.html"><area alt="" coords="353,38,432,51"
href="http://www.triciajean.com/schooldays.html"><area alt="" coords="238,39,345,51"
href="http://www.triciajean.com/growingup.html"><area alt="" coords="104,38,226,51"
href="http://www.triciajean.com/babypictures.html"><area alt="" coords="52,39,100,48"
href="http://www.triciajean.com/kmiotek.html"></map></div><a class="abp-objtab" 
href="http://www.apple.com/qtactivex/qtplugin.cab" style="padding-left: 0px;"></a><a class="abp-objtab"
href="http://www.triciajean.com/WinnieThePooha.mid" style="padding-left: 0px;"></a><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="0" width="0"><param name="src" value="WinnieThePooha.mid"><param name="controller" value="false"><param name="autoplay" value="true"><param name="loop" value="True"><script type="text/javascript">//<![CDATA[
document.write('<EMBED SRC="WinnieThePooha.mid" HIDDEN="true" LOOP="True" AUTOPLAY="true" autostart="true">');function FWImage_Indigo(chain,msg){if (chain==1)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby3.jpg');if (chain==2)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby4.jpg');if (chain==3)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby5.jpg');if (chain==4)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby6.jpg');if (chain==5)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby7.jpg');if (chain==6)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby8.jpg');if (chain==7)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby9.jpg');if (chain==8)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby10.jpg');if (chain==9)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby11.jpg');if (chain==10)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby12.jpg');if (chain==11)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby13.jpg');if (chain==12)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby14.jpg');if (chain==13)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby1aa.jpeg');if (chain==14)FWLHitSwap('','img1',msg,'baby1b.jpeg','baby1.jpeg');}window.FT_Indigo=new Object;window.FT_Indigo['0']=FWImage_Indigo;//]]></script><embed src="babypictures_files/WinnieThePooha.mid" hidden="true" loop="True" autoplay="true" autostart="true"></object></body></html>

Thanks for looking Airshow, but that fix di not work :(

Mekmiotek,

You're right about it being ridiculously long!! It's also ridiculously complex. I guess it was written some years ago. It's certainly not the way we write our javascript today.

The code could (with some work) boil down to just a handful of lines, however there's a simple fix.

Replace the function FWLHitSwap with this:

function FWLHitSwap(layer, name, num){
	var image = arguments[num+3];
	if (document.images && image){
		var el = (document.getElementById) ? document.getElementById(name) : (document.all) ? document.all[name] : (document.layers) ? document.layers[layer].document : (document[name]) ? document[name] : null;
		if(el) { el.src = fwLoad[image].src; }
	}
}

and replace the function FWLoad with this:

function FWLoad(image){
	if(!document.images) return null;
	var imgDir = 'babypictures_files/';
	if(!fwLoad[image]){
		fwLoad[image] = new Image();
		fwLoad[image].src = imgDir + image;
	}
}

This version is for the Baby Pictures page. Edit the line var imgDir = 'babypictures_files/'; appropriately in other pages.

Should work, barring errors. Let me know.

Airshow

Mekmiotek,

You're right about it being ridiculously long!! It's also ridiculously complex. I guess it was written some years ago. It's certainly not the way we write our javascript today.

The code could (with some work) boil down to just a handful of lines, however there's a simple fix.

Replace the function FWLHitSwap with this:

function FWLHitSwap(layer, name, num){
	var image = arguments[num+3];
	if (document.images && image){
		var el = (document.getElementById) ? document.getElementById(name) : (document.all) ? document.all[name] : (document.layers) ? document.layers[layer].document : (document[name]) ? document[name] : null;
		if(el) { el.src = fwLoad[image].src; }
	}
}

and replace the function FWLoad with this:

function FWLoad(image){
	if(!document.images) return null;
	var imgDir = 'babypictures_files/';
	if(!fwLoad[image]){
		fwLoad[image] = new Image();
		fwLoad[image].src = imgDir + image;
	}
}

This version is for the Baby Pictures page. Edit the line var imgDir = 'babypictures_files/'; appropriately in other pages.

Should work, barring errors. Let me know.

Airshow

Airshow,
Does white space matter? It didnt work but there is alot of blank spaces in there. Heres the page:


ok I had aproblem there when I pasted it pasted each function twice, I think I corrected it, heres the page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head><title>Baby Pictures</title>
<meta name="GENERATOR" content="Freeway 4 Pro 4.2.2"><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><style type="text/css">
body { margin-left:0px; margin-right:0px; margin-top:0px; background-color:#fff; background-image:url(Tricia-266pixels.jpg) }
p:first-child { margin-top:0px }
table { empty-cells:hide }
._sp { font-size:1px; visibility:hidden }
._lp { margin-bottom:0px }

</style>

<script language="javascript">
var ft_target1 = 0;
function NewSlide(direction,wrap) {
	var arr = new Array(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14);
	var obj;
	if (arr.length > 0)	{
		if (direction > arr.length){ ft_target1=arr.length-1 }
		else if (direction < -arr.length) ft_target1 = 1;
		else {
		ft_target1 = ft_target1 + direction;
		if (ft_target1<1){ if (wrap) ft_target1=arr.length; else ft_target1=1; }
		else if (ft_target1>=arr.length){ if (wrap){ft_target1=1;} else {ft_target1=arr.length-1;} }
		}
		targetnumber = arr[ft_target1];
		
		if (top.frames.length) {
			for (i = 0 ; i != top.frames.length ; i++) {
				obj = eval("top.frames[" + i + "].window.FT_Indigo");
				if (obj != null) for (j in obj)
					obj[j](targetnumber, 1);
			obj = eval('top.FT_Indigo');
			if (obj != null) for (j in obj)
				obj[j](targetnumber, 1);
			}
		}
		else {
			obj = eval('window.FT_Indigo');
			if (obj != null) for (j in obj)
				obj[j](targetnumber, 1);
		}
	 }
}

</script><script type="text/javascript">/*<![CDATA[*/
var fwIsNetscape = navigator.appName == 'Netscape';

function FWLHitSwap(layer, name, num){	
		var image = arguments[num+3];
		if (document.images && image){
				var el = (document.getElementById) ? document.getElementById(name) : (document.all) ? document.all[name] :
		(document.layers) ? document.layers[layer].document : (document[name]) ? document[name] : null;
				if(el) { el.src = fwLoad[image].src; }
			}
			}
fwLoad = new Object;

function FWLoad(image){	
	if(!document.images) return null;	
	var imgDir = 'babypictures_files/';	
	if(!fwLoad[image]){
		fwLoad[image] = new Image();
		fwLoad[image].src = imgDir + image;	}}
		
		
function
FWPreload(){FWLoad("baby3.jpg");FWLoad("baby1aa.jpg");FWLoad("baby4.jpg");FWLoad("baby5.jpg");FWLoad("baby6.jpg");FWLoad("baby7.jpg");FWLoad("baby8.jpg");FWLoad("baby9.jpg");FWLoad("baby10.jpg");FWLoad("baby11.jpg");FWLoad("baby12.jpg");FWLoad("baby13.jpg");FWLoad("baby14.jpg");FWLoad("baby1aa.jpg");FWLoad("baby3.jpg");}/*]]>*/</script></head><body onload="FWPreload()"><div id="PageDiv" style="margin: auto; position: relative; width: 650px; height: 100%;"><table border="0" cellpadding="0" cellspacing="0" width="641"><tbody><tr valign="top"><td colspan="10" height="7"></td><td height="7"></td></tr><tr valign="top"><td colspan="2" height="2"></td><td colspan="8" height="2" valign="bottom"><img src="babypictures_files/item2bh.gif" alt="" border="0" height="2" width="632"></td><td height="2"></td></tr><tr valign="top"><td rowspan="2" height="148"></td><td colspan="2" rowspan="2" height="148"><img src="babypictures_files/halo.gif" alt="" border="0" height="148" width="137"></td><td colspan="7" height="81" valign="middle"><img src="babypictures_files/item2d.gif" alt="" border="0" height="81" width="496"></td><td height="81"></td></tr><tr valign="top"><td height="67" valign="middle"><img src="babypictures_files/item2e.gif" alt="" border="0" height="67" width="3"></td><td colspan="5" rowspan="2" height="84"><img src="babypictures_files/birdsribbon.gif" alt="" border="0" height="84" width="430"></td><td rowspan="2" height="84" valign="middle"><img src="babypictures_files/item2f.gif" alt="" border="0" height="84" width="63"></td><td height="67"></td></tr><tr valign="top"><td colspan="2" rowspan="6" height="443"></td><td colspan="2" height="17" valign="middle"><img src="babypictures_files/item2g.gif" alt="" border="0" height="17" width="139"></td><td height="17"></td></tr><tr valign="top"><td colspan="8" height="2" valign="middle"><img src="babypictures_files/item2h.gif" alt="" border="0" height="2" width="632"></td><td height="2"></td></tr><tr valign="top"><td colspan="3" height="290" valign="middle"><img src="babypictures_files/item2i.gif" alt="" border="0" height="290" width="213"></td><td colspan="3" height="290"><img src="babypictures_files/baby3.jpg" alt="" id="img1" border="0" height="290" width="232"></td><td colspan="2" height="290" valign="middle"><img src="babypictures_files/item2j.gif" alt="" border="0" height="290" width="187"></td><td height="290"></td></tr><tr valign="top"><td colspan="8" height="6" valign="middle"><img src="babypictures_files/item2k.gif" alt="" border="0" height="6" width="632"></td><td height="6"></td></tr><tr valign="top"><td colspan="4" height="16" valign="middle"><img src="babypictures_files/item2l.gif" alt="" border="0" height="16" width="242"></td><td height="16"><a href="javascript:NewSlide(1,true);"><img name="FR_item3" src="babypictures_files/item3.gif" alt="" border="0" height="16" width="188"></a></td><td colspan="3" height="16" valign="middle"><img src="babypictures_files/item2m.gif" alt="" border="0" height="16" width="202"></td><td height="16"></td></tr><tr valign="top"><td colspan="8" height="112"><img src="babypictures_files/item2n.gif" alt="" usemap="#map1" border="0" height="112" width="632"></td><td height="112"></td></tr><tr class="_sp"><td height="1" width="7"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="7"></td><td height="1" width="1"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="1"></td><td height="1" width="136"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="136"></td><td height="1" width="3"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="3"></td><td height="1" width="74"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="74"></td><td height="1" width="29"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="29"></td><td height="1" width="188"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="188"></td><td height="1" width="15"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="15"></td><td height="1" width="124"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="124"></td><td height="1" width="63"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="63"></td><td height="1" width="1"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="1"></td></tr></tbody></table><map name="map1"><area alt="" coords="271,69,354,79"
href="http://guestbook.pax.nu/cgi-local/guest.cgi?book38120"><area alt="" coords="483,54,518,67"
href="http://www.triciajean.com/eulogy.html"><area alt="" coords="471,58,475,61"
href="http://www.triciajean.com/accident2a.html"><area alt="" coords="345,55,463,64"
href="http://www.triciajean.com/teenyears.html"><area alt="" coords="202,54,337,64"
href="http://www.triciajean.com/triciahorses.html"><area alt="" coords="107,54,198,67"
href="http://www.triciajean.com/family.html"><area alt="" coords="436,38,573,51"
href="http://www.triciajean.com/talents.html"><area alt="" coords="353,38,432,51"
href="http://www.triciajean.com/schooldays.html"><area alt="" coords="238,39,345,51"
href="http://www.triciajean.com/growingup.html"><area alt="" coords="104,38,226,51"
href="http://www.triciajean.com/babypictures.html"><area alt="" coords="52,39,100,48"
href="http://www.triciajean.com/kmiotek.html"></map></div><a class="abp-objtab" 
href="http://www.apple.com/qtactivex/qtplugin.cab" style="padding-left: 0px;"></a><a class="abp-objtab"
href="http://www.triciajean.com/WinnieThePooha.mid" style="padding-left: 0px;"></a><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="0" width="0"><param name="src" value="WinnieThePooha.mid"><param name="controller" value="false"><param name="autoplay" value="true"><param name="loop" value="True"><script
type="text/javascript">/*<![CDATA[*/
document.write('<EMBED SRC="WinnieThePooha.mid" HIDDEN="true" LOOP="True" AUTOPLAY="true" autostart="true">');function FWImage_Indigo(chain,msg){if
(chain==1)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby3.jpg');if
(chain==2)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby4.jpg');if
(chain==3)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby5.jpg');if
(chain==4)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby6.jpg');if
(chain==5)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby7.jpg');if
(chain==6)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby8.jpg');if
(chain==7)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby9.jpg');if
(chain==8)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby10.jpg');if
(chain==9)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby11.jpg');if
(chain==10)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby12.jpg');if
(chain==11)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby13.jpg');if
(chain==12)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby14.jpg');if
(chain==13)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby1aa.jpg');if
(chain==14)FWLHitSwap('','img1',msg,'baby1aa.jpg','baby1aa.jpg');}window.FT_Indigo=new
Object;window.FT_Indigo['0']=FWImage_Indigo;/*]]>*/</script><embed src="babypictures_files/WinnieThePooha.mid" hidden="true" loop="True" autoplay="true" autostart="true"></object></body></html>

Mekmiotek,

I'm not too sure what's wrong there, however here's the whole page, significantly simplified to make it more understandable and maintainable.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Baby Pictures</title>
<meta name="GENERATOR" content="Freeway 4 Pro 4.2.2">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<style type="text/css">
body { margin-left:0px; margin-right:0px; margin-top:0px; background-color:#fff; background-image:url(Tricia-266pixels.jpg) }
p:first-child { margin-top:0px }
table { empty-cells:hide }
._sp { font-size:1px; visibility:hidden }
._lp { margin-bottom:0px }
</style>

<script language="javascript">
var ft_target1 = 0;
function NewSlide(direction, wrap) {
	var obj;
	if(fwLoad.length > 0){
		var x = (ft_target1 + direction) % fwLoad.length;
		ft_target1 = (x >=0) ? x : fwLoad.length + x;
		if(top.frames.length){
			for(i=0; i!=top.frames.length; i++){
				runObjCollection(top.frames[i].window.FT_Indigo, ft_target1);
				runObjCollection(top.FT_Indigo, ft_target1);
			}
		}
		else {
			runObjCollection(window.FT_Indigo, ft_target1);
		}
	}
}
function runObjCollection(obj, targetnumber){
	if(obj){
		for(j in obj){ obj[j](targetnumber, 1); }
	}
}
function FWLHitSwap2(name){
	if(document.images){
		var el = (document.getElementById) ? document.getElementById(name) : (document.all) ? document.all[name] : (document.layers) ? document.layers[layer].document : (document[name]) ? document[name] : null;
		if(el) { el.src = fwLoad[ft_target1].src; }
	}
}
fwLoad = [];
function FWLoad(image){
	if(!document.images) return null;
	var imgDir = 'babypictures_files/';
	var i = fwLoad.push(new Image());
	fwLoad[i-1].src = imgDir + image;
}
function FWPreload(){
	FWLoad("baby3.jpg");
	FWLoad("baby4.jpg");
	FWLoad("baby5.jpg");
	FWLoad("baby6.jpg");
	FWLoad("baby7.jpg");
	FWLoad("baby8.jpg");
	FWLoad("baby9.jpg");
	FWLoad("baby10.jpg");
	FWLoad("baby11.jpg");
	FWLoad("baby12.jpg");
	FWLoad("baby13.jpg");
	FWLoad("baby14.jpg");
	FWLoad("baby1aa.jpeg");
}
function FWImage_Indigo(chain, msg){ FWLHitSwap2('img1'); }
window.FT_Indigo = { 0 : FWImage_Indigo };
</script>
</head>
<body onload="FWPreload()">
<div id="PageDiv" style="margin: auto; position: relative; width: 650px; height: 100%;">
<table border="0" cellpadding="0" cellspacing="0" width="641">
<tbody>
<tr valign="top">
<td colspan="10" height="7"></td><td height="7"></td>
</tr><tr valign="top">
<td colspan="2" height="2"></td>
<td colspan="8" height="2" valign="bottom"><img src="babypictures_files/item2bh.gif" alt="" border="0" height="2" width="632"></td>
<td height="2"></td>
</tr><tr valign="top">
<td rowspan="2" height="148"></td>
<td colspan="2" rowspan="2" height="148"><img src="babypictures_files/halo.gif" alt="" border="0" height="148" width="137"></td>
<td colspan="7" height="81" valign="middle"><img src="babypictures_files/item2d.gif" alt="" border="0" height="81" width="496"></td>
<td height="81"></td>
</tr><tr valign="top">
<td height="67" valign="middle"><img src="babypictures_files/item2e.gif" alt="" border="0" height="67" width="3"></td>
<td colspan="5" rowspan="2" height="84"><img src="babypictures_files/birdsribbon.gif" alt="" border="0" height="84" width="430"></td>
<td rowspan="2" height="84" valign="middle"><img src="babypictures_files/item2f.gif" alt="" border="0" height="84" width="63"></td>
<td height="67"></td>
</tr><tr valign="top">
<td colspan="2" rowspan="6" height="443"></td>
<td colspan="2" height="17" valign="middle"><img src="babypictures_files/item2g.gif" alt="" border="0" height="17" width="139"></td>
<td height="17"></td>
</tr><tr valign="top">
<td colspan="8" height="2" valign="middle"><img src="babypictures_files/item2h.gif" alt="" border="0" height="2" width="632"></td>
<td height="2"></td>
</tr><tr valign="top">
<td colspan="3" height="290" valign="middle"><img src="babypictures_files/item2i.gif" alt="" border="0" height="290" width="213"></td>
<td colspan="3" height="290"><img src="babypictures_files/baby3.jpg" alt="" id="img1" border="0" height="290" width="232"></td>
<td colspan="2" height="290" valign="middle"><img src="babypictures_files/item2j.gif" alt="" border="0" height="290" width="187"></td>
<td height="290"></td>
</tr><tr valign="top">
<td colspan="8" height="6" valign="middle"><img src="babypictures_files/item2k.gif" alt="" border="0" height="6" width="632"></td>
<td height="6"></td>
</tr><tr valign="top">
<td colspan="4" height="16" valign="middle"><img src="babypictures_files/item2l.gif" alt="" border="0" height="16" width="242"></td>
<td height="16"><a href="javascript:NewSlide(1,true);"><img name="FR_item3" src="babypictures_files/item3.gif" alt="" border="0" height="16" width="188"></a></td>
<td colspan="3" height="16" valign="middle"><img src="babypictures_files/item2m.gif" alt="" border="0" height="16" width="202"></td>
<td height="16"></td>
</tr><tr valign="top">
<td colspan="8" height="112"><img src="babypictures_files/item2n.gif" alt="" usemap="#map1" border="0" height="112" width="632"></td>
<td height="112"></td>
</tr><tr class="_sp">
<td height="1" width="7"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="7"></td>
<td height="1" width="1"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="1"></td>
<td height="1" width="136"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="136"></td>
<td height="1" width="3"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="3"></td>
<td height="1" width="74"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="74"></td>
<td height="1" width="29"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="29"></td>
<td height="1" width="188"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="188"></td>
<td height="1" width="15"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="15"></td>
<td height="1" width="124"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="124"></td>
<td height="1" width="63"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="63"></td>
<td height="1" width="1"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="1"></td>
</tr>
</tbody>
</table>
<map name="map1">
<area alt="" coords="271,69,354,79" href="http://guestbook.pax.nu/cgi-local/guest.cgi?book38120">
<area alt="" coords="483,54,518,67" href="http://www.triciajean.com/eulogy.html">
<area alt="" coords="471,58,475,61" href="http://www.triciajean.com/accident2a.html">
<area alt="" coords="345,55,463,64" href="http://www.triciajean.com/teenyears.html">
<area alt="" coords="202,54,337,64" href="http://www.triciajean.com/triciahorses.html">
<area alt="" coords="107,54,198,67" href="http://www.triciajean.com/family.html">
<area alt="" coords="436,38,573,51" href="http://www.triciajean.com/talents.html">
<area alt="" coords="353,38,432,51" href="http://www.triciajean.com/schooldays.html">
<area alt="" coords="238,39,345,51" href="http://www.triciajean.com/growingup.html">
<area alt="" coords="104,38,226,51" href="http://www.triciajean.com/babypictures.html">
<area alt="" coords="52,39,100,48" href="http://www.triciajean.com/kmiotek.html">
</map>
</div>
<a class="abp-objtab" href="http://www.apple.com/qtactivex/qtplugin.cab"  style="padding-left: 0px;"></a>
<a class="abp-objtab" href="http://www.triciajean.com/WinnieThePooha.mid" style="padding-left: 0px;"></a>
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="0" width="0">
<param name="src" value="babypictures_files/WinnieThePooha.mid">
<param name="controller" value="false">
<param name="autoplay" value="true">
<param name="loop" value="True">
<embed src="babypictures_files/WinnieThePooha.mid" hidden="true" loop="True" autoplay="true" autostart="true" />
</object>
</body>
</html>

NOTES to help you convert other pages:

  1. Backup each page before you do anything.
  2. Replace all scripts in each page's <head> with the the single script from this sample page above.
  3. Edit the line var imgDir = 'babypictures_files/'; to reflect the appropriate directory.
  4. Cut the javascript block from the bottom of each page and paste into the head (for reference).
  5. Edit the function FWPreload() to reflect the image file names in the reference block pasted at step 4 above. Ensure that the first FWLoad statement corresponds to the image specified in the HTML.
  6. Delete (or comment out) the reference block.
  7. Ensure the relevant <img> on each page has id="img1" .

I tested this process on one other page so it should work all through. If it doesn't, let me know and I'll convert them all for you.

WARNING: Daniweb has a nasty habit of inserting <b></b> into javascript urls. You will need to change <a href="javascript<b></b>:NewSlide(1,true);"> to <a href="javascript:NewSlide(1,true);"> Airshow

Airshow,
Thamk you so much for your help! I used that proess on another page and it worked great, Ill be working on the rest later and tomorrow.

Anyway I wanted to THANK YOU!! :D

Mekmiotek,

I'm not too sure what's wrong there, however here's the whole page, significantly simplified to make it more understandable and maintainable.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Baby Pictures</title>
<meta name="GENERATOR" content="Freeway 4 Pro 4.2.2">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<style type="text/css">
body { margin-left:0px; margin-right:0px; margin-top:0px; background-color:#fff; background-image:url(Tricia-266pixels.jpg) }
p:first-child { margin-top:0px }
table { empty-cells:hide }
._sp { font-size:1px; visibility:hidden }
._lp { margin-bottom:0px }
</style>

<script language="javascript">
var ft_target1 = 0;
function NewSlide(direction, wrap) {
	var obj;
	if(fwLoad.length > 0){
		var x = (ft_target1 + direction) % fwLoad.length;
		ft_target1 = (x >=0) ? x : fwLoad.length + x;
		if(top.frames.length){
			for(i=0; i!=top.frames.length; i++){
				runObjCollection(top.frames[i].window.FT_Indigo, ft_target1);
				runObjCollection(top.FT_Indigo, ft_target1);
			}
		}
		else {
			runObjCollection(window.FT_Indigo, ft_target1);
		}
	}
}
function runObjCollection(obj, targetnumber){
	if(obj){
		for(j in obj){ obj[j](targetnumber, 1); }
	}
}
function FWLHitSwap2(name){
	if(document.images){
		var el = (document.getElementById) ? document.getElementById(name) : (document.all) ? document.all[name] : (document.layers) ? document.layers[layer].document : (document[name]) ? document[name] : null;
		if(el) { el.src = fwLoad[ft_target1].src; }
	}
}
fwLoad = [];
function FWLoad(image){
	if(!document.images) return null;
	var imgDir = 'babypictures_files/';
	var i = fwLoad.push(new Image());
	fwLoad[i-1].src = imgDir + image;
}
function FWPreload(){
	FWLoad("baby3.jpg");
	FWLoad("baby4.jpg");
	FWLoad("baby5.jpg");
	FWLoad("baby6.jpg");
	FWLoad("baby7.jpg");
	FWLoad("baby8.jpg");
	FWLoad("baby9.jpg");
	FWLoad("baby10.jpg");
	FWLoad("baby11.jpg");
	FWLoad("baby12.jpg");
	FWLoad("baby13.jpg");
	FWLoad("baby14.jpg");
	FWLoad("baby1aa.jpeg");
}
function FWImage_Indigo(chain, msg){ FWLHitSwap2('img1'); }
window.FT_Indigo = { 0 : FWImage_Indigo };
</script>
</head>
<body onload="FWPreload()">
<div id="PageDiv" style="margin: auto; position: relative; width: 650px; height: 100%;">
<table border="0" cellpadding="0" cellspacing="0" width="641">
<tbody>
<tr valign="top">
<td colspan="10" height="7"></td><td height="7"></td>
</tr><tr valign="top">
<td colspan="2" height="2"></td>
<td colspan="8" height="2" valign="bottom"><img src="babypictures_files/item2bh.gif" alt="" border="0" height="2" width="632"></td>
<td height="2"></td>
</tr><tr valign="top">
<td rowspan="2" height="148"></td>
<td colspan="2" rowspan="2" height="148"><img src="babypictures_files/halo.gif" alt="" border="0" height="148" width="137"></td>
<td colspan="7" height="81" valign="middle"><img src="babypictures_files/item2d.gif" alt="" border="0" height="81" width="496"></td>
<td height="81"></td>
</tr><tr valign="top">
<td height="67" valign="middle"><img src="babypictures_files/item2e.gif" alt="" border="0" height="67" width="3"></td>
<td colspan="5" rowspan="2" height="84"><img src="babypictures_files/birdsribbon.gif" alt="" border="0" height="84" width="430"></td>
<td rowspan="2" height="84" valign="middle"><img src="babypictures_files/item2f.gif" alt="" border="0" height="84" width="63"></td>
<td height="67"></td>
</tr><tr valign="top">
<td colspan="2" rowspan="6" height="443"></td>
<td colspan="2" height="17" valign="middle"><img src="babypictures_files/item2g.gif" alt="" border="0" height="17" width="139"></td>
<td height="17"></td>
</tr><tr valign="top">
<td colspan="8" height="2" valign="middle"><img src="babypictures_files/item2h.gif" alt="" border="0" height="2" width="632"></td>
<td height="2"></td>
</tr><tr valign="top">
<td colspan="3" height="290" valign="middle"><img src="babypictures_files/item2i.gif" alt="" border="0" height="290" width="213"></td>
<td colspan="3" height="290"><img src="babypictures_files/baby3.jpg" alt="" id="img1" border="0" height="290" width="232"></td>
<td colspan="2" height="290" valign="middle"><img src="babypictures_files/item2j.gif" alt="" border="0" height="290" width="187"></td>
<td height="290"></td>
</tr><tr valign="top">
<td colspan="8" height="6" valign="middle"><img src="babypictures_files/item2k.gif" alt="" border="0" height="6" width="632"></td>
<td height="6"></td>
</tr><tr valign="top">
<td colspan="4" height="16" valign="middle"><img src="babypictures_files/item2l.gif" alt="" border="0" height="16" width="242"></td>
<td height="16"><a href="javascript:NewSlide(1,true);"><img name="FR_item3" src="babypictures_files/item3.gif" alt="" border="0" height="16" width="188"></a></td>
<td colspan="3" height="16" valign="middle"><img src="babypictures_files/item2m.gif" alt="" border="0" height="16" width="202"></td>
<td height="16"></td>
</tr><tr valign="top">
<td colspan="8" height="112"><img src="babypictures_files/item2n.gif" alt="" usemap="#map1" border="0" height="112" width="632"></td>
<td height="112"></td>
</tr><tr class="_sp">
<td height="1" width="7"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="7"></td>
<td height="1" width="1"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="1"></td>
<td height="1" width="136"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="136"></td>
<td height="1" width="3"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="3"></td>
<td height="1" width="74"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="74"></td>
<td height="1" width="29"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="29"></td>
<td height="1" width="188"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="188"></td>
<td height="1" width="15"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="15"></td>
<td height="1" width="124"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="124"></td>
<td height="1" width="63"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="63"></td>
<td height="1" width="1"><img src="babypictures_files/_clear.gif" alt="" border="0" height="1" width="1"></td>
</tr>
</tbody>
</table>
<map name="map1">
<area alt="" coords="271,69,354,79" href="http://guestbook.pax.nu/cgi-local/guest.cgi?book38120">
<area alt="" coords="483,54,518,67" href="http://www.triciajean.com/eulogy.html">
<area alt="" coords="471,58,475,61" href="http://www.triciajean.com/accident2a.html">
<area alt="" coords="345,55,463,64" href="http://www.triciajean.com/teenyears.html">
<area alt="" coords="202,54,337,64" href="http://www.triciajean.com/triciahorses.html">
<area alt="" coords="107,54,198,67" href="http://www.triciajean.com/family.html">
<area alt="" coords="436,38,573,51" href="http://www.triciajean.com/talents.html">
<area alt="" coords="353,38,432,51" href="http://www.triciajean.com/schooldays.html">
<area alt="" coords="238,39,345,51" href="http://www.triciajean.com/growingup.html">
<area alt="" coords="104,38,226,51" href="http://www.triciajean.com/babypictures.html">
<area alt="" coords="52,39,100,48" href="http://www.triciajean.com/kmiotek.html">
</map>
</div>
<a class="abp-objtab" href="http://www.apple.com/qtactivex/qtplugin.cab"  style="padding-left: 0px;"></a>
<a class="abp-objtab" href="http://www.triciajean.com/WinnieThePooha.mid" style="padding-left: 0px;"></a>
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="0" width="0">
<param name="src" value="babypictures_files/WinnieThePooha.mid">
<param name="controller" value="false">
<param name="autoplay" value="true">
<param name="loop" value="True">
<embed src="babypictures_files/WinnieThePooha.mid" hidden="true" loop="True" autoplay="true" autostart="true" />
</object>
</body>
</html>

NOTES to help you convert other pages:

  1. Backup each page before you do anything.
  2. Replace all scripts in each page's <head> with the the single script from this sample page above.
  3. Edit the line var imgDir = 'babypictures_files/'; to reflect the appropriate directory.
  4. Cut the javascript block from the bottom of each page and paste into the head (for reference).
  5. Edit the function FWPreload() to reflect the image file names in the reference block pasted at step 4 above. Ensure that the first FWLoad statement corresponds to the image specified in the HTML.
  6. Delete (or comment out) the reference block.
  7. Ensure the relevant <img> on each page has id="img1" .

I tested this process on one other page so it should work all through. If it doesn't, let me know and I'll convert them all for you.

WARNING: Daniweb has a nasty habit of inserting <b></b> into javascript urls. You will need to change <a href="javascript<b></b>:NewSlide(1,true);"> to <a href="javascript:NewSlide(1,true);"> Airshow

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.