﻿var CMS_ZF;
function CmsZoomImg(img) {
    if (CMS_ZF) CMS_ZF.close();
    CMS_ZF = window.open('', 'CmsZoom', 'resizable=yes,scrollbars=no,status=yes,location=yes,toolbar=no');
    CMS_ZF.document.write("<head><title>Zoom</title><link rel=stylesheet type='text/css' href='../styles.css'></head><body topmargin=0 leftmargin=0 class='nss_zoom' onUnload='window.opener.CMS_ZF=null' ><a href='javascript:window.close()' ><img src='" + img + "' border=0 onLoad='if (window.innerWidth){ iWidth = window.innerWidth; iHeight = window.innerHeight; }else{ iWidth = document.body.clientWidth; iHeight =document.body.clientHeight; } iWidth = document.images[0].width - iWidth; iHeight = document.images[0].height - iHeight; window.resizeBy(iWidth, iHeight);' ></a></body>");
    CMS_ZF.document.close();
    CMS_ZF.focus();
}

