<!--

function zoomIn(what) {
	what.orgWidth = what.style.width;
	what.style.height = "100%;";
	what.orgZIndex = what.style.zIndex;
	what.style.zIndex = "999";
}

function zoomOut(what) {
		what.style.height = what.orgWidth;
		what.style.zIndex = what.orgZIndex;
}

-->