﻿function showlitlist(qq){
var ImgWin;
if (ImgWin ==null || ImgWin.Closed)
{ImgWin=window.open("", "litlistWwin", "height=200,width=500,resizable=1,scrollbars=1")};
 ImgWin.document.clear('');
 ImgWin.document.write("<HTML><HEAD>");
 ImgWin.document.write("<STYLE>td {font-face:verdana}</STYLE>");
 ImgWin.document.write("<TITLE>");
 ImgWin.document.write("список источников литературы");
 ImgWin.document.write("</TITLE>");
 ImgWin.document.write("<BODY BGCOLOR=#E8E8E6>");
 ImgWin.document.write("<center>");
 ImgWin.document.write("<table cellspacing=2 cellpadding=2 width=100%>");
for (i=0; i<(qq.length/2); i++){
 if (i>0) {ImgWin.document.write("<tr><td colspan=2 bgcolor=gray height=1/></tr>");}; 
 ImgWin.document.write("<tr><td>"+qq[i*2]+"</td><td>"+qq[i*2+1]+"</td></tr>");};
 ImgWin.document.write("</table>");
 ImgWin.document.write("</center>");
 ImgWin.document.write("</HTML>");
 ImgWin.focus();
 window.status=('готово');
}