// JavaScript Document

function wechsel(src, width, height)
{
	var temp = src.split(".");
	
	var newsrc = "/media/"+temp[0]+"-"+width+"-"+height+"."+temp[1];
	
	
	  document.bild.src = newsrc;
}



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 MM_openBrWindow(theURL,winName,features)
{
	window.open(theURL,winName,features);
}