function showPic(str)
{
	document.getElementById('bigpicture').innerHTML='<img src="'+str+'">'; document.getElementById('bigpicture').style.display='block';
}

function hidePic()
{
	document.getElementById('bigpicture').style.display='none';
}