function setFrame(oImg)//,cDiv
	{
	if (navigator.appName !== "Microsoft Internet Explorer")
		{
		return
		}
	oImg.style.cusror="crosshair"
	var cSrc = oImg.src, nWidth=222,nHeight=223,
		oObject=oImg.offsetParent,
		nTop=oImg.offsetTop,
		nLeft=oImg.offsetLeft
	while (oObject!==null)
		{
		nTop = nTop + oObject.offsetTop
		nLeft = nLeft + oObject.offsetLeft
		oObject = oObject.offsetParent
		}
//	nLeft = nLeft + oImg.width + 10
	if (nLeft + oImg.width + nWidth < 580)
	{
	nLeft = nLeft + oImg.width + 8
	}
	else
	{
	nLeft = nLeft - nWidth - 8
	}
	if (nTop + nHeight < 446)
	{
	nTop = nTop
	}
	else
	{
	nTop = nTop - nHeight+oImg.height+2
	}
	cSrc = cSrc.substr(cSrc.lastIndexOf("../\/") + 1)
	document.all.zoomFrame.style.width=nWidth
	document.all.zoomFrame.style.height=nHeight
	document.all.zoomFrame.style.posTop = nTop
	document.all.zoomFrame.style.posLeft = nLeft // (screen.width - nWidth) / 2
	document.all.zoomFrame.style.visibility="visible"
	window.zoomFrame.Pic1.src=oImg.src//cDiv +"../\/" + cSrc 
	}

function hideFrame()
	{
	if (navigator.appName !== "Microsoft Internet Explorer")
		{
		return
		}
	window.zoomFrame.Pic1.src=""
	document.all.zoomFrame.style.visibility="hidden"
	}
function moveImage(oImg)
	{
	if (navigator.appName !== "Microsoft Internet Explorer")
		{
		return
		}
	var wRat = zoomFrame.Pic1.offsetWidth / oImg.width, 
		hRat = zoomFrame.Pic1.offsetHeight / oImg.height
	zoomFrame.Pic1.style.left = (-event.offsetX * wRat) + document.all.zoomFrame.offsetWidth / 2
	zoomFrame.Pic1.style.top = (-event.offsetY * hRat) + document.all.zoomFrame.offsetHeight / 2
	}

if (navigator.appName == "Microsoft Internet Explorer")
	{
	document.write("<p><iframe name='zoomFrame' src='MiniWind.htm' style='visibility:hidden' target='_top' " + 
	"marginwidth='1' marginheight='1' border='0' frameborder='0' scrolling='no'" + 
	"style='position:absolute;FILTER: progid:DXImageTransform.Microsoft.dropShadow(Color=999999,offX=5,offY=5,positive=true);'></iframe></p>")
	}

function openZoom(cFileName)
	{
	cWind = 'http://www.VeratexInc.com/OlOrders/foxisapi.dll/vtx.vtx.goand?Command=ZoomImage&Style=' + cFileName
	window.open(cWind,'_blank',config='left=10,top=10,width=700,height=560,toolbar=0,location=0,status=1,menubar=0,scrollbars=1,resizable=0')
	}