if (parseInt(navigator.appVersion.charAt(0))>=4) {
        var isNav=(navigator.appName=="Netscape");
        var isIE=(navigator.appName.indexOf("Microsoft")!=-1);
}

function popImage(url,title) {
        w = window.open('about:blank','','scrollbars=no,resizeable=no,menubar=no,status=no,directories=no,'+
                'location=no,width=10,height=10,left=100,top=100');

w.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>'+title+'</title><meta http-equiv="Content-Type" content="text/html; charset=auto"><style type="text/css">body{margin-top: 0; margin-left: 0;}</style><'+'script type="text/javascript">function res(){');
        if (isIE) {

w.document.write('window.resizeTo(100,100);w=100-(document.body.clientWidth-document.images[0].width);');

w.document.write('h=100-(document.body.clientHeight-document.images[0].height);window.resizeTo(w,h);');
        } else {

w.document.write('window.innerWidth=document.images["i"].width;');

w.document.write('window.innerHeight=document.images["i"].height;');
        }
        w.document.write('window.title="'+title+'";window.focus();}');
        w.document.write('</'+'script></head><body bgcolor=white>');
        w.document.write('<img name=i src="'+url+'" alt="." style="display:block" onload="res()"></body></html>');
        w.document.close();
}
