function openLightbox(element)
{
	var image = new Image;
	var image = document.createElement("img");
	image.src = element.src.replace("-small", "");
	
	if(window.innerHeight <= 650)
	{
		image.style.height = window.innerHeight*0.80+"px";
		image.style.marginLeft = -431*(window.innerHeight*0.80*100/607)/100/2+10+"px";
	}
	else
	{
		image.style.marginLeft = "-225.50px";
	}
	
	$("lightbox").innerHTML = "";
	$("lightbox").appendChild(image);
	$("mask").appear({ duration: 1, from: 0, to: 0.60 });
	$("lightbox").style.display = "block";
	
}

function closeLightbox()
{
	$("lightbox").style.display = "none";
	$("mask").style.display = "none";
}
