function sendPic(picture)
	{
	ext = 'width=620,height=680,top=0'
	ur = 'sendpic2.php?p='+picture
	send = window.open(ur,'Send',ext);
	
    //alert(picture);
	}
	
function printPic(picture)
	{
	//alert(picture)
	ext = 'width=620,height=530,top=10'
	ur = 'printpic.php?p='+picture
	send = window.open(ur,'Print',ext);
	}
	
function WisselKleur(what,onoff)
	{
	if (onoff == 1) what.style.backgroundColor = '#006FCA';
	if (onoff == 0) what.style.backgroundColor = '';
	}
	
	
function bigger()
{
document.getElementById('picture').style.display = 'block';
}	

function closediv()
{
document.getElementById('picture').style.display = 'none';
}
