
if (typeof popBox != "undefined") {
	popBoxAutoClose = false;
	popBoxShowRevertBar = false;
	popBoxShowRevertText = false;
	popBoxWaitImage.src = "/img/popbox/loading.gif";
	popBoxRevertImage = "/img/popbox/magminus.gif";
	popBoxPopImage = "/img/popbox/magplus.gif";
}

var popBoxLastImageId = null;

function PrePopProcessing(obj) {
	if (popBoxLastImageId != null && popBoxLastImageId != obj.id) {
		Revert(popBoxLastImageId, 50, 'PopBoxImageLarge');
	}
}

function PostPopProcessing(obj) {
	popBoxLastImageId = obj.id;
}

function PreRevertProcessing(obj) {
	popBoxLastImageId = null;
}

function PopBoxImageLarge(id, speed) {

	if (popBoxLastImageId != null) {
		Revert(popBoxLastImageId, 50, 'PopBoxImageLarge');
	}

	var el = document.getElementById('im' + id);
	if (el != null) {
		Pop(el,speed,'PopBoxImageLarge');
	}
}

