function zoom(src,w,h,str,aut)
{
    var he = h - 0;
    var we = w - 0;
    var bl = "";
    /*if (navigator.appName == 'Microsoft Internet Explorer')
     { he=he+15; we=w; bl = "about:blank"; }
    else if (navigator.appName == 'Netscape')
     { he=he+15; we=w; bl = "about:blank"; }
    else
     { he=1.2*h; we=1.2*w; bl = ""; }*/
    lrgewin = window.open("about:blank","", "width=" + we +",height=" + he +", toolbar=no, menubar=no, scrollbars=no, location=no, directories=no, status=notop=0,left=0,screenX=0,screenY=0")
    doc = lrgewin.document;
    doc.open('text/html');
    doc.write('<HTML><HEAD><META HTTP-EQUIV="imagetoolbar" CONTENT="no"><TITLE>' + str + '<\/TITLE>');
    doc.write('<STYLE> IMG{ border:none; } body{ font-family:verdana; font-size:9px; } .italic { font-style:italic; }');
    //doc.write('a:link    {text-decoration:none; font-family: verdana; color: rgb(100,185,255); font-size: 9px; }');
    //doc.write('a:visited {text-decoration:none; font-family: verdana; color: rgb(100,185,255); font-size: 9px; }');
    //doc.write('a:hover   {text-decoration:none; color: black; font-size: 9px;}');
    doc.write('<\/STYLE><\/HEAD>                                                 ');
    doc.write('<\/SCRIPT><BODY onBlur="self.close()" bgcolor="white" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0"><IMG src="'+ src +'" width="'+ w +'" height="'+ h +'">');
    doc.write('<\/RIGHT><\/HTML>'); //<br>Autor &copy; ' + aut + ' <A onClick="self.close()" href="#">Sulge<\/A>
    doc.close();
    return true;
}
/*function chclr(i) {
    var color = colors[Math.floor(colors.length*Math.random())]
    if (document.layers)
        window.document.layers['id' + i].bgColor = color;
    else if (document.all)
        window.document.all['id' + i].style.background = color;
}
function showByLink(object,link,x,y) {
    if (document.layers && document.layers[object]) {
        document.layers[object].left = link.x + x;
        document.layers[object].top = link.y + y;
        document.layers[object].visibility = 'visible';
    }
    else if (document.all) {
        document.all[object].style.visibility = 'visible';

        if (document.all[object].myFlag == null) {                                //- document.all[object].clientWidth - x  +document.all[object].clientHeight
            document.all[object].style.posLeft = document.all[object].offsetLeft  + x ;
            document.all[object].style.posTop = document.all[object].offsetTop  + y;
        }

        document.all[object].myFlag = true;
    }
}


function hide(object) {
    if (document.layers && document.layers[object])
        document.layers[object].visibility = 'hidden';
    else if (document.all)
        document.all[object].style.visibility = 'hidden';
}     //onMouseover="showByLink('mlay{VAR:id}',this,0,20)" onMouseout="hide('mlay{VAR:id}')"
*/