function zoom(name)
{
no=window.open("","zoom","left=10,top=10,width=551,height=403,"+
"toolbar=no,location=nodirectories=no,status=no,menubar=no"+
",scrollbars=no,resizable=no,copyhistory=no");

with (no.document)
{
open();
writeln('<HTML>\n<BODY TOPMARGIN="0" LEFTMARGIN="0">');
writeln('<IMG SRC="./obr/'+name+'.jpg">');
writeln('</BODY>\n<HTML>');
close();
focus();
}
}

function zoom1(name)
{
no=window.open("","zoom1","left=10,top=10,width=551,height=403,"+
"toolbar=no,location=nodirectories=no,status=no,menubar=no"+
",scrollbars=no,resizable=no,copyhistory=no");

with (no.document)
{
open();
writeln('<HTML>\n<BODY TOPMARGIN="0" LEFTMARGIN="0">');
writeln('<IMG SRC="./obr/'+name+'.jpg">');
writeln('</BODY>\n<HTML>');
close();
focus();
}
}

