function imagePopup(src, width, height){
	window.open('_imagePopup.php?src=' + src, 'Bild', 'width=' + width + ', height=' + height + ', status=no, toolbar=no, menubar=no, scrollbars=yes');
}

function showProfile(name){
	var image = name + '.jpg';
	window.open('team_profile.php?image=' + image, 'Team', 'width=720, height=600, status=no, scrollbars=yes');
}

function closeWindow(){
	window.self.close();
}