function getDatabaseByArticle(x){
	if(x){
	temp = 'index.php?action=show&article=' + x;
	location= temp;}
}

function showImage(datei, breite, hoehe, title) 
{   
		var url="show_image.php?path=" + datei + "&width=" + breite + "&height=" + hoehe + "&title=" + title;
    		var winH = (screen.width - breite) / 2;
		var winV = (screen.height - hoehe) / 2;
		var winHeight = (hoehe /2)*2 + 20;

        var fenster = open(url,"detail","dependent=yes,directories=no,location=no,menubar=no,personalbar=no,scrollbars=no,status=no,resizable=yes,width=" + breite + ",height=" +  winHeight +",top="+winV+",left="+winH);
        fenster.focus();
        
        return;
}

