// JavaScript Document

function assignColors(sID, fgColor, bgColor) { 
	if (document.getElementById(sID) != undefined) {
		document.getElementById(sID).style.color=fgColor;
		document.getElementById(sID).style.backgroundColor=bgColor;
	}
}

function putImage(sID, imgSource) {
	if (imgSource != '') {
		document.getElementById(sID).src=imgSource;
	}
}

function putString(sID, str) {
	document.getElementById(sID).innerHTML=str;
}
