/*
        Javascript functionality
*/


function hideShow(elem)
{
                var obj = document.getElementById(elem);
                if (obj.style.display == 'block')
                {
                        obj.style.display = 'none';
                }
                else
                {
                        obj.style.display = 'block';
                }
}

/*function bigVersion(link)
{
	winRef = window.open('http://test.rens-leenders.nl/'+link,'mywin','left=20,top=20,width=800,height=600,toolbar=1,resizable=0');
}*/
