////////////////////////////////////////////////////////////////////////////////////
//  JS_ESCAPE.JS (J-Script to escape from foreign frames)
//  
//  Thank you for using this javascript!
//  
//  This code is distributed WITHOUT ANY WARRANTY
//  ALL Warranties, expressed or implied are hereby disclaimed.
//  The RESELLING of this code is STRICTLY PROHIBITED.
//  This script was created for my personal usage from the start but then it
//  became so popular. It's that version you're using now. Since this is free
//  please don't try to sell this solution to a company claiming it is yours.
//  
//  File:          js_escape.js
//  Revision:      1.0
//  Author:        Alexander Boehmer
//  Email:         alex.boehmer@micronnect.de
//  URL:           http://www.micronnect.de
//  Created:       07.06.2000
//  Last Modified: --.--.----
//  
//  © 2000 by Alexander Böhmer - All rights reserved
////////////////////////////////////////////////////////////////////////////////////
//  
//  Let me tell you how the script will work:
//  1. Insert the following source to the HEAD-Section of your HTML
//     <script LANGUAGE="JavaScript" src="javascript/js_escape.js"></script>
//  2. Enlarge the BODY-Tag of your HTML by onload="escape()"> like shown beneath
//     <body onload="escape()">
//  That´s it -- Good luck
////////////////////////////////////////////////////////////////////////////////////

function escape()
{
if(parent != null && parent != self) {
top.location.href=self.location.href;
}
}