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