function makeTable()
{

var MainTable="<div style='width:" + NewsPh_widthDiv+";'>" 
+"<table style='border-style:solid; border-width:"+ NewsPh_borderW+"px; " +" border-color: " + NewsPh_borderCol +";' " + "cellpadding=2 cellspacing=0 width=100% border=0"  +">";

var zagolovok="Новости Avto.ru";

MainTable=MainTable+"<tr><td colspan=2 align=center valign=top bgcolor=" + NewsPh_bgcolorHNews + ">" +"<a target=_blank style='color:" + NewsPh_bgcolorHNewsText + "; text-decoration:none; " + "font-size:" +NewsPh_sFont+"px;"+"font-family:"+ NewsPh_tFont+";' " + " href=http://www.avto.ru><strong>" + zagolovok + "</strong></a>"+"</td></tr>";

var N=0;
N=Head.length;

if (NewsPh_nNews>10)
 NewsPh_nNews=10;
else
 if (NewsPh_nNews<3)
  NewsPh_nNews=3;


if (N<=NewsPh_nNews)
 NewsPh_nNews=N;
 
var s="";
var fl=0;
for (var j=0; j<NewsPh_nNews; j++) 
{
if (fl==0) {
s=s +"<tr>";
s = s + "<td valign=top bgcolor=" + NewsPh_bgcolorNews + "><a target=_blank href=" + newsURL[j] + ">" + "<img src=" + imageURL[j] + " width=" + nWidth[j] + " height=" + nHeight[j] + " border=0 alt=" + "'" + Head[j] + "'" + "></a></td>";
s = s + "<td  valign=top bgcolor=" + NewsPh_bgcolorNews + "><a target=_blank style='text-decoration:none; color:" + NewsPh_hrefCol + "; " + "font-size:" + NewsPh_sFont + "px;" + "font-family:" + NewsPh_tFont + ";' " + " href=" + newsURL[j] + ">" + Head[j] + "</a></td>";
s =s +"</tr>";
fl=1;
}
else
{
s =s+"<tr>";
s = s + "<td valign=top bgcolor=" + NewsPh_abgcolorNews + "><a target=_blank href=" + newsURL[j] + ">" + "<img src=" + imageURL[j] + " width=" + nWidth[j] + " height=" + nHeight[j] + " border=0 alt=" + "'" + Head[j] + "'" + "></a></td>";
s =s+"<td valign=top bgcolor=" + NewsPh_abgcolorNews + "><a target=_blank style='text-decoration:none; color:" + NewsPh_hrefCol + "; " + "font-size:" + NewsPh_sFont + "px;" + "font-family:" + NewsPh_tFont + ";' " + " href=" + newsURL[j] + ">" + Head[j] + "</a></td>";
s =s +"</tr>";
fl = 0;
}

//if (j!=(NewsPh_nNews-1))
 //s=s+"<tr><td height=4 colspan=2 bgcolor="+NewsPh_bgcolorHNews+">"+"</td></tr>";

};

var szEndTable = "<tr><td colspan=2 bgcolor=" + NewsPh_bgcolorNews + "><strong><a target=_blank style='color:" + NewsPh_hrefCol + "; " + "font-size:" + NewsPh_sFont + "px;" + "font-family:" + NewsPh_tFont + ";'  href=http://avto.ru/hotnews/ >Все новости</a></strong></td></tr>";
MainTable=MainTable+s+ szEndTable+"</table></div>";

return MainTable;
}

