function openWin(_width, _height, _img,_title,_id) 
{
_width += 16
//alert (_width)
if (_width > 800) _width = 800
if (_height > 600) _height = 600

width = "width="+_width;
height = "height="+_height;

//width="width=" +_width;
//height="height=" + _height;
//alert (width);
//alert (height);
myWin= open("", "asdsadsad", width + ',' + height + ',resizable=yes,status=no,toolbar=no,menubar=no,scrollbars=1');
myWin.document.open();
myWin._img = _img;
myWin._title= _title;
myWin.document.write("<HTML><META HTTP-EQUIV='Content-type' CONTENT='text/html; charset=windows-1254'><META HTTP-EQUIV='Content-language' CONTENT='Tr'><LINK REL=STYLESHEET TYPE=text/css HREF=/css/style.css>");
myWin.document.write("<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 BGCOLOR=#FFFFFF>");
myWin.document.write("<TITLE>");
//myWin.document.write(''+_title+'');
myWin.document.write("ANA SOZU");
myWin.document.write("</TITLE>");
myWin.document.write("<script language=JavaScript> {");
myWin.document.write("document.write('<A HREF=# ONCLICK=window.close()><IMG SRC=' + _img + ' BORDER=0></A>')");
myWin.document.write("} </script>"); 
myWin.document.write("</BODY>");
myWin.document.write("</HTML>");
myWin.document.close();
}


function openWinMult(_width, _height, _img,_title,_id,_descr) 
{
_width += 16
_height += 50
//alert (_width)
if (_width > 800) _width = 800
if (_height > 600) _height = 600
descr = _descr

width = "width="+_width;
height = "height="+_height;

//width="width=" +_width;
//height="height=" + _height;
//alert (width);
//alert (height);
myWin= open("", "asdsadsad", width + ',' + height + ',resizable=yes,status=no,toolbar=no,menubar=no,scrollbars=1');
myWin.document.open();
myWin._img = _img;
myWin._title= _title;
myWin.document.write("<HTML><META HTTP-EQUIV='Content-type' CONTENT='text/html; charset=windows-1254'><META HTTP-EQUIV='Content-language' CONTENT='Tr'><LINK REL=STYLESHEET TYPE=text/css HREF=/css/style.css>");
myWin.document.write("<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 BGCOLOR=#FFFFFF>");
myWin.document.write("<TITLE>");
//myWin.document.write(''+_title+'');
myWin.document.write("ANA SOZU");
myWin.document.write("</TITLE>");
myWin.document.write("<script language=JavaScript> {");
myWin.document.write("document.write('<A HREF=# ONCLICK=window.close()><IMG SRC=' + _img + ' BORDER=0></A>')");
myWin.document.write("} </script><BR>"); 
myWin.document.write('<CENTER>'+descr+'</CENTER>');
myWin.document.write("<BR><BR></BODY>");
myWin.document.write("</HTML>");
myWin.document.close();
}

function showDiv(year)
{
	for (i=0;i<100;i++)
	{
		if (eval("document.all.d"+year+i+""))
		{
			if (eval("document.all.d"+year+i+".style.display ") == 'none')			eval("document.all.d"+year+i+".style.display = ''"); else eval("document.all.d"+year+i+".style.display = 'none'")
		}else break;
		
	}
}
