function bildpop(verweis,x,y,status) 
{ 
var verweis2 = 'templates/bildpop.php?bild=' + verweis;
popup = window.open(verweis2, "Zweitfenster", "width="+ x + ",height="+ y + ",status="+ status + ",resizable=no,scrollbars=no"); 
popup.focus(); 
}

function rootmenue_over(id,imgformat) {

	document.getElementById(id).src=document.getElementById(id).src + '_over.' + imgformat;
	//document.getElementById(id).style.cursor='pointer';
}

function rootmenue_out(id) {

	var dateiname = document.getElementById(id).src;
	var bananasplit = dateiname.split('_over');
	document.getElementById(id).src=bananasplit[0];
	
}
