function showBigPhoto(obj)
{
		var content = obj.parentNode;
		var src = obj.getAttribute('src');
		var area = document.createElement('div');
		content.appendChild(area);
		area.setAttribute('style', 'width: 400; height: 400; position: relative; top: -200px; left: -200px');
		var image = document.createElement('img');
		image.setAttribute('src', src);
		image.setAttribute('style', 'width: 400px; height: 400px');
		image.setAttribute('onclick', 'removephoto(this)');
		area.appendChild(image);
}
function removephoto(obj)
{
	var parent = obj.parentNode.parentNode;
	parent.removeChild(parent.lastChild);
}
