// JavaScript Document

/*
============================================================
Script:     Open Page in Frameset Script

Functions:  If a page is intended to be opened only within
            a frameset, this script refers the browser
            immediately to the frameset page

Browsers:   All

Author:     etLux
============================================================

Put the following script in the head of your page.  Set the
url of the frameset page where shown below.
*/


// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

if (parent.location.href == self.location.href){
    // change the url below to the url of the
    // frameset page...
    window.location.href = '/'
}


