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("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN'><HTML>");
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("</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("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN'><HTML>");
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("</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(''+descr+'');
myWin.document.write("<BR><BR></BODY>");
myWin.document.write("</HTML>");
myWin.document.close();
}