function bildpop(verweis,x,y,status,text) {
var verweis2 = 'templates/bildpop.php?bild=' + verweis;
if (text) {verweis2 = verweis2 + '&text=' + text;}
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];
	
}

function fenster1 (pic)
{
	var win;
	win = window.open ("","image","width=800,height=667,screenX=50,screenY=30,LEFTMARGIN=0,topmargin=0");
	win.document.write ('<BODY BACKGROUND="' + pic + '">');
}

function popupfenster(verweis,x,y) 
{ 
popup = window.open(verweis, "Zweitfenster", "width="+ x + ",height="+ y + ",status=resizable=no,scrollbars=no"); 
popup.focus(); 
}
