
function bigfoto(width, height, wname, name, title, alt)
{
var opts;
var mywin;
opts="width="+width+",height="+height+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0";
str="<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\"><html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1251\">\n<title>"+title+"</title>\n</head>\n<body TOPMARGIN=0 LEFTMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>\n<a href='javascript:window.close()'><img width="+width+" height="+height+" src="+name+" border='0' alt='"+alt+"'></a>\n</body>\n</html>";
eval(wname+'=window.open("", "'+wname+'",opts)');
eval(wname+'.document.writeln(str)');
eval(wname+'.focus()');
eval(wname+'.document.close()');
}
