<!--                              
function open_person(id)
{
	var url = "person.php?id=" + id;
	openPopupWin(url, 570, 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();        
}
//-->

