﻿function scaleUpPicture(rid, picFile, largePicFile){
	document.getElementById("pic" + rid).src = document.getElementById("pic" + rid).src.replace(picFile, largePicFile)
	document.getElementById("pic" + rid).className = "large";
	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<img src='pix/vergroessern.gif' style='width:20px; height:20px;padding:5px 0 0 5px;border:0px;vertical-align:top;'>";
}

function scaleDownPicture(rid, picFile, largePicFile){
	document.getElementById("pic" + rid).src = document.getElementById("pic" + rid).src.replace(largePicFile, picFile)
	document.getElementById("pic" + rid).className = "small";
	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<img src='pix/vergroessern.gif' style='width:20px; height:20px;padding:5px 0 0 5px;border:0px;vertical-align:top;'>";
}
