function InitSaveVariables(form) {
	comment = form.comment.value;
}

function RatePhoto(form) {
	if (form.rating.checked) {
		InitSaveVariables(form);
		form.comment.value = form.comment.value + "Rated: 5/5";
	}
	else {
		form.comment.value = comment;
	}
}
