function scaleUpPicture(rid, picFile, largePicFile){
	document.getElementById("pic" + rid).src = document.getElementById("pic" + rid).src.replace(picFile, largePicFile)
	document.getElementById("pic" + rid).className = "largePicture";
	functionCall = document.getElementById("picAnchorA" + rid).href;
	functionCall = functionCall.replace("scaleUpPicture", "scaleDownPicture");
	document.getElementById("picAnchorA" + rid).href = functionCall;
	document.getElementById("picAnchorB" + rid).href = functionCall;
	document.getElementById("picAnchorB" + rid).innerHTML = "verkleinern";
	document.getElementById("picHead").src = "pix/inseratkopfLarge.gif";
}

function scaleDownPicture(rid, picFile, largePicFile){
	document.getElementById("pic" + rid).src = document.getElementById("pic" + rid).src.replace(largePicFile, picFile)
	document.getElementById("pic" + rid).className = "smallPicture";
	functionCall = document.getElementById("picAnchorA" + rid).href;
	functionCall = functionCall.replace("scaleDownPicture", "scaleUpPicture");
	document.getElementById("picAnchorA" + rid).href = functionCall;
	document.getElementById("picAnchorB" + rid).href = functionCall;
	document.getElementById("picAnchorB" + rid).innerHTML = "vergrößern";
	document.getElementById("picHead").src = "pix/inseratkopf.gif";
}