function confirmPhotoDelete() {
	var answer = confirm("Are you sure you want to delete this photo?");
	return(answer);
}
function suedebug() {
	var answer = confirm("test?");
	return(answer);
}
function changeCaption(c)	{
document.getElementById("caption").innerHTML=c;
}
function changePhotoIdOfComment(i)	{
//oElement=document.getElementByName("photoidofcomment");
//oElement.innerHTML=i;
document.formPhotoComment.photoidofcomment.value=i;
}
