function addAnotherPhoto(start,end)
{
	var i=3;
	for(i=3; i<7; i++){
		ID=document.getElementById('photos_'+i);
		if(ID.style.display == "none"){
			ID.style.display="block";
			return;
		}
	}
}
