function bigfoto(id,w,h,title)
{
	opts="width="+w+",height="+h+",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+" . Graphics . Amelina Tatsiana</title>\n<link rel='stylesheet' type='text/css' href='/main.css'>\n</head>\n<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>\n<a href=# onclick='window.close();'><img width="+w+" height="+h+" src='/graphics/"+id+".gif' alt='Close the window'></a>\n</body>\n</html>";
	f_win = window.open("","BigFoto"+id,opts);
	f_win.document.writeln(str);
	f_win.focus();
	f_win.document.close();
}
