	function popup(imagine,dx,dy){
	    agent=navigator.appVersion;
        version=parseInt(agent);
        if (version>=4) {
                leftCorner=screen.width/2 - dx/2;
                topCorner=screen.height/2 - dy/2;
        }else{
                leftCorner=0;
                topCorner=0;
        }
		 myWin=open("","win","screenX="+leftCorner+",screenY="+topCorner+",left="+leftCorner+",top="+topCorner+", width="+dx+",height="+dy+",status=no,menubar=no");
		myWin.document.open();
		titlu="::";
		myWin.document.write("<html><head><title>"+titlu+"</title></head>");
		myWin.document.write("<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
		myWin.document.write("<a href='javascript:window.close();'><img src="+imagine+" width="+dx+" height="+dy+" border=0></a>");
		myWin.document.write("</body></html>");
		myWin.document.close();
	}
