<!--                              
function open_buro(id, number)
{
	var url = "buro.popup.php?id=" + id + "&num=" + number;
	openPopupWin(url, 550, 350);
}

function openPopupWin(url, width, height)
{
        var name = "new";
        var my_x = (screen.availWidth - width)/2;
        var my_y = (screen.availHeight - height)/2;
        var fenster = "width=" + width + ",height=" + height + ",left="+my_x+", top="+my_y+",resizable=no,scrollbars=yes,toolbar=no,status=no,directories=no,menubar=no,location=no";

        w = open(url, name, fenster);

	w.focus();        
}

var d=document;

function setThemes(id)
{
	var themes = d.getElementById("themes"+id);
	themes.style.display = "block";	
}

function unsetThemes(id)
{
	var themes = d.getElementById("themes"+id);
	themes.style.display = "none";	
}

function setImSt(img_new, width, height)
{       
	var img = d.getElementById("foto");	
	img.src = img_new;
	//img.width = width;
	//img.height = height;
}

function setImDef()
{       
	setImSt("../i/star.gif",325,400);
}

//-->
