function showDiv(divID) {
document.getElementById(divID).style.display = "block";	
}
function showImg(imageID,imageLoc) {
document.getElementById(imageID).src = imageLoc;
document.getElementById(imageID).style.display = "block";
}

function changeText(textID,NewText) {
document.getElementById(textID).innerHTML = NewText;
}

function hideImg(i1) {
document.getElementById(i1).src = "";
document.getElementById(i1).style.display = "none";
}
function hideText(t1,t2) {
document.getElementById(t1).innerHTML = '';
document.getElementById(t2).innerHTML = '';
}
function hideDiv(divID){
document.getElementById(divID).style.display = "none";
}

function hl(id) {
//	document.getElementById(id).style.outlineStyle = "solid";
//	document.getElementById(id).style.outlineWidth = "2px";
//	document.getElementById(id).style.outlineColor = '#008A00';
//    document.getElementById(id).style.backgroundColor = '#9FFF9F';
//		document.getElementById(id).setAttribute('style', 'outline-style:solid; outline-width:2px; outline-color:#008A00; background-color:#9FFF9F');

}

function sel(id,num) {
	document.getElementById(id).style.outlineStyle = "solid";
	document.getElementById(id).style.outlineWidth = "2px";
	document.getElementById(id).style.outlineColor = '#8A0000';
    document.getElementById(id).style.backgroundColor = '#FF9F9F';
	var i = 1;
	for(i;num;i++) {
		if (i == num) {
			continue;	
		}
		ho(i+"a");
	}
}
function ho(id) {
	document.getElementById(id).style.outlineStyle = "none";
	document.getElementById(id).style.backgroundColor = '#FFFFFF';	
}

