<!--
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_img(img,width,height)
{
	var name = "popup" + String(Math.round(Math.random() * 1000));
        var fenster = "width=" + width + ",height=" + height + ",resizable=no,scrollbars=no,toolbar=no,status=no,directories=no,menubar=no,location=no";
        w = open("popup.php?img=" +img, name, fenster);
	w.focus();        
}

function pic_ch(obj,pic)
{
document.images[obj].src=pic
}

//-->
