function jWebShow(id, type, color) {
	if (document.getElementById){
		document.getElementById(id).style.display = type;
		document.getElementById(id).style.backgroundColor = color;
	}
}

function jWebHide(id, color) {
	if (document.getElementById){
		document.getElementById(id).style.display = 'none';
		document.getElementById(id).style.backgroundColor = color;
	}
}