Another one of those hidden-demo type scripts. Basically, this script breaks you out of frames you may have encountered before this page (as often happens in the web). This is a very usefull script to put on your index page if you have a non-frame page.
The source...


<script language="Javascript">
<!-- 
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

if (top.location != self.location) {
top.location = self.location.href
}

//--> 
</script>