function loadImage (url,targetid,width) {
	document.getElementById(targetid).src=url;
	document.getElementById(targetid).width=width;
}

function loadImageText (text,targetid) {
	document.getElementById(targetid).innerHTML = text;
}

