function showText(txt) {
	window.status = txt;
}

function hideText() {
	window.status = '';
}

function changeImage(name,img) {
	document.getElementById(name).src = img;
}
