I'm not that familiar with all this ..
what do I do with this script ?
Do I need to modify it ?
Where do I put it exactly ?
"Adrienne" <arbpen2003@[EMAIL PROTECTED]
> wrote in message
news:Xns95BC53104B634arbpenyahoocom@[EMAIL PROTECTED]
> Gazing into my crystal ball I observed "Peter"
<Peter@[EMAIL PROTECTED]
>
> writing in news:stKtd.14703$jQ4.827485@[EMAIL PROTECTED]
>
> > Hi,
> > My site is still using frames (unfortunately)
> > One of the problems this causes is that people via search engines
often
> > land on sub-pages and don't have the complete picture.
> > Before I change the lot ... is there an easy way to work around this
> > problem ?
> > Like a java script or something that detects that only a sub-page is
> > launched and automatically launches the index file then with full
frame
> > sup****t (and possibly even the requested page as page displayed in the
> > main frame) ?
> >
> >
> >
>
> Yes, you can use javascript to do that, but the user will be returned to
> the index page, not the page they really were looking for. If the site
> is large and complex, that can lead to a real problem.
>
> Here's a solution. Check with your host and see what kind of languages
> you have available, and then you can just do an include.
>
> <body>
> <div id="menu">
> <!--#include file="menu.inc">
> </div>
> <div id="content">
> <h1>Heading</h1>
> <p>Your content</p>
> </div>
> </body>
>
> **** menu.inc ****
> <ul>
> <li><a href="#content">Skip Menu</a></li>
> <li><a href="index.shtml">Home</a></li>
> <li><a href="contact.shtml">Contact</a></li>
> </ul>
>
>
> --
> Adrienne Boswell
> Please respond to the group so others can share


|