function show(id)
{
    document.getElementById(id).style.visibility='visible';
    document.getElementById(id).style.height='auto';
}

function hide(id)
{
    document.getElementById(id).style.visibility='hidden';
    document.getElementById(id).style.height='0px';
}

function CIC(name, url) { document.getElementById(name).src='http://yandex.ru/cycounter?www.'+url; }
