function popup (datei,width,height)
{ 
	var args = "width="+width+",height="+height;
	foto_popup = window.open(datei,'Popup',args); 
	foto_popup.focus();
}

function BilderVorladen()
{
    document.Vorladen = new Array();
 
    if(document.style)
    {
        for(var i = 0; i < BilderVorladen.arguments.length; i++)
        {
            document.Vorladen[i] = new Image();
            document.Vorladen[i].src = BilderVorladen.arguments[i];
        }
    }
}


