
function ShowInTime(cId, milisecond){
	ShowOn(cId);
	HideInTime(cId, milisecond);
}

function HideInTime(cId, milisecond){
	setTimeout('ShowOff(\"' + cId + '\")', milisecond);
}

function ShowOff(cId){
	a = document.getElementById(cId);
	if(a != null){
		a.style.display = 'none';
	}
}

function ShowOn(cId){
	a = document.getElementById(cId);
	if(a != null){
		a.style.display = 'block';
	}
}


