function setbg(color)
{
document.getElementById("search").style.background=color
}

function setbg2(color)
{
document.getElementById("mail").style.background=color
}

function setbg3(color)
{
document.getElementById("textarea-comment").style.background=color
}
function setbg4(color)
{
document.getElementById("input1").style.background=color
}
function setbg5(color)
{
document.getElementById("input2").style.background=color
}
function setbg6(color)
{
document.getElementById("input3").style.background=color
}

function CountLeft(field, count, max) {

if (field.value.length > max)
field.value = field.value.substring(0, max);
else

count.value = max - field.value.length;
}

function All()
{
       var e = document.getElementById('intscript');
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
		  e.style.display = 'block';
}

function StatsInfo()
{
       var e = document.getElementById('statsinfo');
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
		  e.style.display = 'block';
}
