function roll(my_id, my_pic){
	document.getElementById(my_id).src = my_pic;
}
function reload_page(my_modul){
	location.href = "?modul=" + my_modul;
}

function removebr(sender){
	var textar = sender.value.replace(/(\015\012)|(\015)|(\012)/g, '\n');
	}
	
function adjust(sender){
	// zeilenumbrueche harmonisieren
	var text = sender.value.replace(/(\015\012)|(\015)|(\012)/g, '\n');
	// text in array verwandeln
	var text_arr = text.split('\n');
	//zeilen zaehlen
	sender.rows = text_arr.length;
	}		
	
function popup(url){
	/*window.open(URL, name, 'width='+weite+',height='+hoehe+',left='+left+',top='+top);*/
	window.open(url,"popup","height=500,width=500,left=300,top=150,x=300,y=150,toolbar=no,statusbar=no,scrollbars=yes").focus();
}

function popup2(url){
	/*window.open(URL, name, 'width='+weite+',height='+hoehe+',left='+left+',top='+top);*/
	window.open(url,"popup","height=600,width=521,left=200,top=100,x=200,y=100,toolbar=no,statusbar=no").focus();
}

function showContent()
{
document.getElementById("rechts").style.display = 'block';

}

function Weiterleitung()
{
   location.href='?p=guestbook';
}