thanks for your help.
I checked out the Inline frames - but I'm not sure I have room for one on my page so far.
I will make additional pages that will open in separate windows. But I'm not sure where to put the links in? I have 6 buttons like I said, which are just images at the moment - where do I put in the HTML for the link?
The current HTML for the buttons is:
<!--
function on1()
{if (!document.images) return; document.a.src = "images/butt_link1_selZ.jpg";}
function on2()
{if (!document.images) return; document.b.src = "images/butt_link2_selZ.jpg";}
function on3()
{if (!document.images) return; document.c.src = "images/butt_link3_selZ.jpg";}
function on4()
{if (!document.images) return; document.d.src = "images/butt_link4_selZ.jpg";}
function on5()
{if (!document.images) return; document.e.src = "images/butt_link5_selZ.jpg";}
function on6()
{if (!document.images) return; document.f.src = "images/butt_link6_selZ.jpg";}
function off1()
{if (!document.images) return; document.a.src = "images/butt_link1Z.jpg";}
function off2()
{if (!document.images) return; document.b.src = "images/butt_link2Z.jpg";}
function off3()
{if (!document.images) return; document.c.src = "images/butt_link3Z.jpg";}
function off4()
{if (!document.images) return; document.d.src = "images/butt_link4Z.jpg";}
function off5()
{if (!document.images) return; document.e.src = "images/butt_link5Z.jpg";}
function off6()
{if (!document.images) return; document.f.src = "images/butt_link6Z.jpg";}
var imgslist = new Array(
"images/butt_link1_selZ.jpg",
"images/butt_link2_selZ.jpg",
"images/butt_link3_selZ.jpg",
"images/butt_link4_selZ.jpg",
"images/butt_link5_selZ.jpg",
"images/butt_link6_selZ.jpg");
var imgs=new Array();
for (x=0; x<imgslist.length; x++)
if (document.images)
{imgs[x]=new Image(); imgs[x].src = imgslist[x];}
//-->
I have no idea what to make of it.
