function zoom(x)
{
  no=window.open("","_blank","left=50,top=50,width=520,height=520,"+
     "toolbar=no,location=no,directories=no,status=no,menubar=no"+
     ",scrollbars=no,resizable=no,copyhistory=no");

  with (no.document)
  {
    open();
    writeln('<HTML><title>...:::::www.dogamusic.cz:::::...</title>');
    writeln('<BODY bgcolor=#000000 text=#CCCCCC topmargin=8 leftmargin=8>');
    writeln('<center>');
    writeln('<img src="'+x+'" onLoad="javascript: window.resizeTo(this.width+30,this.height+45);">');
    writeln('</center>');
    writeln('</BODY>\n</HTML>');
    close();
  }
}
