function inText(symbol){
	text = document.getElementById('shoutbox_text');
	if(text.value == 'Nachricht'){
		text.value = symbol;
	}else
		text.value = text.value + symbol;
}
function emptyText(obj){
	if(obj.value == "Nachricht"	|| obj.value == "Name")
		obj.value = "";
}

var Fenster = null;
function neuesFenster(meineSeite,meinName,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings =
	'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	Fenster = window.open(meineSeite,meinName,settings)
}
