function change_photo_word(image_id, image_file, word_id, word)
{
	document.getElementById(image_id).src=image_file;
	document.getElementById(word_id).innerHTML=word;
}

