/************************/
/* checks.js            */
/* unsere-weltreise.net */
/************************/
/* copyright            */
/* www.streeck.com      */
/************************/
/* Ver 2.1.0            */
/*    200501011515      */
/************************/

// noframes check
if (top != self)
	top.location = self.location;

// www check
if (window.location.protocol == "http:")
{
	www = "www.";
	if ((window.location.hostname.substr(0,4) != www) &&
		(window.location.hostname.substr(0,5) != "beta."))
	{
		window.location.hostname = www.concat(window.location.hostname);
	}
}

// Netscape 4.x check
if (bs_legacy)
{
	alert("Netscape 4.x:\n\nThis browser is not supported!\nNetscape 7.2 is a up-to-date-browser!\n\nDieser Browser wird nicht unterstuetzt!!!\nNetscape 7.2 ist ein zeitgemaesser Browser!\n\nwww.netscape.com\nwww.netscape.de");
}

