if (top.location == self.location) 
{
	top.location = "http://www.hbzsks.net";
}

preventTheft();

function preventTheft()
{
	try
	{	
		if (top.location.host != self.location.host)
			top.location = self.location;
	}
	catch(ex)
	{
		self.location="http://www.hbzsks.net";
	}	
}


