function openGal(iddd)
{ 
	document.getElementById('pop').style.display = "block";
	document.getElementById('pop').style.left = (screen.width/2) - 350 + "px";
	document.getElementById('pop').style.top = (screen.height/2) - 253 + "px";
}

function toggleDisplay(divdis)
{
	if(document.getElementById(divdis).style.display == 'block')
	{
		document.getElementById(divdis).style.display = 'none';
	}
	else
	{
		document.getElementById(divdis).style.display = 'block';
	}
	
}