// JavaScript Document


function artikelliste() 
{ 
 var breite=800; 
 var hoehe=600; 
 var positionX=((screen.availWidth / 2) - breite / 2); 
 var positionY=((screen.availHeight / 2) - hoehe / 2); 
 var url='http://www.der-portugiese.de/images/Artikelliste%2002.2010.pdf'; 
 pop=window.open('','artikel','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,fullscreen=0,width='+breite+',height='+hoehe+',top=0,left=0'); 
 pop.resizeTo(breite,hoehe); 
 pop.moveTo(positionX,positionY); 
 pop.location=url; 
 }
onerror = stopError;
function stopError()
{return true;
}
 
