function ShowTip (tipName)
{
	var tip = document.getElementById(tipName);
	tip.style.display = 'block';
}
function HideTip (tipName)
{
	var tip = document.getElementById(tipName);
	tip.style.display = 'none';
}
