// JavaScript Document
function BilderVorladen()
{
    document.Vorladen = new Array();

    if(document.images)
    {
        for(var i = 0; i < BilderVorladen.arguments.length; i++)
        {
            document.Vorladen[i] = new Image();
            document.Vorladen[i].src = BilderVorladen.arguments[i];
        }
    }
}
function popup (url1,breite, hoehe ) {
	
	var hoehe1 = parseInt(hoehe) + 90;
	var breite1 = parseInt(breite) + 50;
	var a = "width=" + breite1 + ", height=" + hoehe1 + "resizable=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,toolbar=0";
	
	foto = window.open(url1, "_blank", a);
	
	
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,'status=no,scrollbars=yes,width=550,height=550');
}





