var ver=navigator.userAgent
if (ver.match("MSIE 5.5")||ver.match("MSIE 6"))
{
image1 = new Image();
image2 = new Image();
image3 = new Image();
image1.src = "http://www.hyperjoint.com/php/zoomscript/28plus_hov.gif";image2.src = "http://www.hyperjoint.com/php/zoomscript/28minus_hov.gif";image3.src = "http://www.hyperjoint.com/php/zoomscript/28100_hov.gif";document.write('
');document.write('
');document.write('
');document.write(' ZoomButtons');}
function zoom(z)
{
a=top.document.body.style.zoom;
if (a==""){a=1;}else{a=parseFloat(a);}
olda=a;
switch(z)
{case "+":
if(a<1){a=1}else{if(a<2){a=a+0.2;}else{if(a<5)a=a+0.4;}}
break;
case "-":
if(a<=1){a=.8}else{if(a<=2){a=a-0.2}else{a=a-0.4}}
break;
case "1":
a=1;
break;
}
if (olda!=a)
{top.document.body.style.zoom=a;
self.blur();
window.focus();
}
}