var nIE;

if (navigator.userAgent.indexOf("Opera") == -1 && navigator.userAgent.indexOf("MSIE") != -1)
{
	nIE = navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE ")+5,navigator.userAgent.indexOf("MSIE ")+8);
}	
else
{
	nIE = false;
}

function setZoom(bVal)
{
	if (nIE >= 5.5 && parent.topFrame.enableZoom)
	{
		parent.topFrame.enableZoom(bVal);
	}
}