
// JavaScript Document

url = 'http://dragonfly.sytes.net'; //+ escape(location.pathname + location.search + location.hash );

var site = parent.location.href.indexOf('dragonfly.sytes.net');
var ip = parent.location.href.indexOf('212.129.142.243');
var net696 = parent.location.href.indexOf('192.168.0.1');
var local = parent.location.href.indexOf('localhost');

if (site < 1 && ip < 1 && net696 < 1) {
	if (document.images) {
		parent.location.replace(url); 
	} else { 
		parent.location.href = url; 
	} 
} else if (parent.location.href == self.location.href) {
	if (document.images) {
		parent.location.replace(url); 
	} else { 
		parent.location.href = url; 
	}
} 
