/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function show(name){

    document.getElementById(name).style.display="block";
}

function hidden(name){

    document.getElementById(name).style.display="none";
}

function more (num){

    show('hidden'+num);
    hidden('more'+num);
    show('less'+num);
}

function less (num){

    hidden('hidden'+num);
    hidden('less'+num);
    show('more'+num);
}

function popbox(num){

    show('popbox'+num);
    document.getElementById('news'+num).style.textContent="underline";
}
