var bool=true;
function pressButton(){
if (bool==false) {
	bool=true;
	window.document.form1.tf.value="Guestbook opens in new window";
	}
else {
	bool=false;
	window.document.form1.tf.value="Guestbook opens in same frame";
	}


}
function newEntry(){
	if (bool==true){
		var newWindow=window.open("http://cgi09.puretec.de/cgi-bin/gb_form?clsid=dc2c241c824c7430887b71366a3a7d95","newEntry","height=370,width=400","scrollbars=yes","statusbar=no");
		newWindow.focus();
		}
	else window.location.href = "http://cgi09.puretec.de/cgi-bin/gb_form?clsid=dc2c241c824c7430887b71366a3a7d95";
}

function loadBook(){
	if (bool==true){
		var newWindow2=window.open("http://cgi09.puretec.de/cgi-bin/gb?clsid=dc2c241c824c7430887b71366a3a7d95","seeEntry","scrollbars=yes","statusbar=no");
		newWindow2.focus();
		}
	else window.location.href = "http://cgi09.puretec.de/cgi-bin/gb?clsid=dc2c241c824c7430887b71366a3a7d95";
}

function defaultSettings(){
	var Jetzt=new Date();
	var Stunden = Jetzt.getHours();
	var Minuten = Jetzt.getMinutes();
	if(Minuten<10)Minuten="0"+Minuten;
	window.document.form1.uhrzeit.value= ""+Stunden+":"+Minuten;
	//window.document.form1.nickname.value="Gast";
	}
function weg(beschreibung){
var neu=window.open("",beschreibung,"statusbar=no,scrollbars=yes,HEIGHT=200,WIDTH=400");
neu.document.write(beschreibung);
	
}
