function show_products_marka(nid,nidmarka,m)
{
for (i = 0; i < m; i++)
{
nbody = 'tbody_' + nid + '_' + i;
if (i == nidmarka)
{
document.getElementById(nbody).style.backgroundColor = "#FFC4C4";
}
else
{
document.getElementById(nbody).style.backgroundColor = "#ffffff";
}
}
}
|