/*---------------------------------------------
photo change js 
-------------------------------------------- */
function change(imgurl,text){
	document.images["photo"].src = imgurl;
	obj = document.getElementById("text-box");
	cnt = obj.childNodes[0].nodeValue;
	obj.childNodes[0].nodeValue = text;
	}

