if (top == self) 
{
	
	self.location.href = "index.html";
	
	/*
	var host = "http://www.joopclassics.nl";
	var loc = top.location.href.toString().toLowerCase();
				
	var hostlen = host.length;
	var loclen = loc.length;
	
			
	if (loclen > hostlen)
	{
		var testhost = loc.substr(0,hostlen);
		
		if (testhost == host)
			loc = top.location.href.toString().substr(hostlen + 1, loclen - hostlen);
	}
	
	self.location.href = "index.php?content=" + escape(loc);
	*/
}