function fShowObject(id)
{
	document.getElementById(id).innerHTML = document.getElementById(id).innerHTML;
}

function fSetColor(vNum)
{
	switch(vNum)
	{
		case 1: 
			self.top.bottomFrame.document.all.Table.style.backgroundColor = "#ABC46D";
			self.top.bottomFrame.document.all.Table.style.color = "#000000";
			break;
		case 2: 
			self.top.bottomFrame.document.all.Table.style.backgroundColor = "#D4AB6C";
			self.top.bottomFrame.document.all.Table.style.color = "#000000";
			break;
		case 3: 
			self.top.bottomFrame.document.all.Table.style.backgroundColor = "#4A95DF";
			self.top.bottomFrame.document.all.Table.style.color = "#000000";
			break;
		case 4: 
			self.top.bottomFrame.document.all.Table.style.backgroundColor = "#CDABCE";
			self.top.bottomFrame.document.all.Table.style.color = "#000000";
			break;
	}
		
}
