function obr(name,tekst)
{
msg=open("","obr","toolbar=no,directories=no,location=no,menubar=no,statusbar=no,top=0,left=0");
msg.document.open();
msg.resizeTo(screen.width,screen.height);
msg.document.write("<HTML><HEAD><TITLE>"+name+"</TITLE>")
msg.document.write("<META http-equiv=Content-Type content='text/html; charset=windows-1250'>");
msg.document.write("</HEAD><BODY topmargin=20 leftmargin=20 bgcolor='#000000' onclick=window.close() >");
szer=screen.Width*0.8;
wys=screen.height*0.8;
p=name.lastIndexOf("x");
p=(name.substring(p+1,p+4))/(name.substring(p-3,p));
if (p < 0.72) 
{ 
msg.document.write("<CENTER><IMG src=./IMAGES/"+name+" vspace='20' width="+szer+" height="+szer*p+" >");
msg.document.write("<FONT style='font-family: Arial; font-size: 12pt; color: #FFFFFF'><BR>");
msg.document.write(tekst+"</FONT></CENTER></BODY></HTML>");
}
else 
{ 
msg.document.write("<TABLE border='0' width='100%' height='100%' cellspacing='0' cellpadding='0'><TR><TD>");
msg.document.write("<IMG src=./IMAGES/"+name+" vspace='20' hspace='20' width="+(wys/p)+" height="+wys);	
msg.document.write("></TD><TD width='25%' valign='bottom'><FONT style='font-family: Arial; font-size: 12pt; color: #FFFFFF'>")
msg.document.write(tekst+"<BR><BR><BR></FONT></TD></TR></TABLE></BODY></HTML>");
}
}



