<!--
    function show_xipolis_picture(image,width,height,border,alt,caption,winwidth,winheight,source) 
    {
	if ( !winwidth ) 
	{      
	    winwidth=(width*1.0)+20;
	}

	if ( !winheight ) 
	{      
	    winheight=(height*1.0)+100;
	}      


	if (winwidth > screen.width*0.8) 
	{         
	    winwidth = screen.width*0.8;      
	}      
	
	winheight=(height*1.0)+150;      
	if(winheight > screen.height*0.8) 
	{         
	    winheight = screen.height*0.8;      
	}


        win=open("", "image"+String(Math.random()*10000000000000000000),'width='+winwidth+',height='+winheight+',scrollbars=1,toolbar=0,directories=0,status=0,menubar=0,resizable=1');
        win.document.clear();
        win.document.open();
        win.document.write('<html><head><title>"Duden: Bildanzeige</title></head><body bgcolor=white>');
        win.document.write('<p><img src=/images/'+image+' width='+width+' border='+border+' height='+height+' alt='+alt+'></p>');
        win.document.write('<p>'+caption+'</p>');

	if ( source != 'Quelle:' && source != '' ) 
	{          
	    win.document.write('<p>'+source+'</p>');      
	}

        win.document.write('<p><a href="javascript:window.close()">Fenster schließen</a></p></body></html>');
        win.document.close();
    }


    function show_xipolis_popup(shortname,artikel_id,popup_id) 
    {
        win=open("", artikel_id+popup_id,'width=400, height=300, scrollbars=1,toolbar=0,directories=0,status=0,menubar=0,resizable=1');
        win.document.clear();
        win.document.open();
        win.location.href = "../suche/artikel_abbildung_popup.php?shortname="+shortname+"&artikel_id="+artikel_id+"&popup_id="+popup_id;
        win.document.close();
    }

    function nfenster(datei,name,attribute)
    {
        fenster=window.open(datei,name,attribute);
    }
//-->
