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:
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!