Hi, i know this has been posted a few times but it doesnt seem to work with the script set up ive got, if anyone could help it would be appreciated.
There was a post answer from gary.newelluk that came the closest or atleast put me in the right direction, i know its something to do with my function script....
);
var imgs = new Array(); var count;
for (count=0; count<imglist.length; count++)
{imgs[count]=new Image(); imgs[count].src=imglist[count];}
}
function hilite(name,m)
{if (document.images)
{imgswap(name, imgs[m])}
}
function imgswap(i1,i2)
{if (document.images)
{var temp = i1.src; i1.src=i2.src; i2.src=temp;}
}
// -->
I currently have <IFRAME name="frame1"src ="/default.asp" width="100%" height="100%" class="style1"> </iframe>
wich doesnt work, but id rather get this working with ....
<iframe src="news.html" id="mainframe1" name="mainframe1" width="450" height="400" frameborder=0 scrolling="yes" ALLOWTRANSPARENCY=TRUE>
Not sure if im just diggina whole with this and need to start fresh. Please help.


