Ik moest even in mijn code pagina's kijken.
Varia scripts heb ik gewoon in een text file staan, handig als je wat nodig hebt, alleen dan nog zien te vinden

Als text editor gebruik ik notetab, kan veel meer nog, zie
www.notetab.com
Wel een oude, zie maar:
===============
02:03 03-07-2002
bravenet tips
One of the more common problems with using frames in the building of websites is that
search engines tend to index the independent pages and link to them this way. Therefore,
when someone follows the link in the engine, it will be to the individual page and not to
the frameset that you designed for navigation around your site. This is a real problem if
the only navigation that you offer your visitors is in one frame and the content is in a
different page!
This little piece of code will correct this problem by ensuring that if someone tries to
link into one html page, the script will force the opening of the entire frameset. This
is a very handy piece of code:
<head>
<script language="JavaScript">
if (parent.location.href == self.location.href){
window.location.href = 'index.html'
}
</script>
</head>
Just be sure to replace 'index.html' with whatever filename you use for your frameset
declaration file.
================
