//======================================================================
// (c) by Patrick Kaufmann, Konstanz 4, 6023 Rothenburge, Switzerland
//----------------------------------------------------------------------
// Beschreibung:
// Aufstarten der Homepage nur mit JavaScript erlaubt.
//======================================================================


// Globale Variablen
// -----------------



// Methoden
// --------

function go() {
	return true;
	
	if (top != self) {
		top.location.href = "http://www.patrick-kaufmann.ch";
		return false;
	}
	
	return true;
}

