function resizehelper() {
	width = parseInt(whatcache.style.width.substr(0, 3))
	height = parseInt(whatcache.style.height.substr(0, 3))
	if (width > 10 && height > 10 && height < 116 && height < 116) {
		if (width > 111 || height < 100) {
			prefix = - prefix
		}
		whatcache.style.width = width + 4 * prefix + "px"
		whatcache.style.height = height + 4 * prefix + "px"
	}
}

function resize(what) {
		if (!document.all && !document.getElementById)
			return
		whatcache = eval("document.images." + what)
		prefix = 1
		if (whatcache.style.width =="") {
			whatcache.style.width = 115 + "px"
			whatcache.style.height = 115 + "px"
		}
		beginzoom = setInterval("resizehelper()",100)
}

function clearresize() {
	clearInterval(beginzoom)
	whatcache.style.width = 115 + "px"
	whatcache.style.height = 115 + "px"
}
