function display(fadeBlockId,appearBlockId)
{
	if (navigator.appName=="Microsoft Internet Explorer") {
		document.getElementById(fadeBlockId).style.display = "none";
		document.getElementById(appearBlockId).style.display = "block";
	} else {
		Effect.DropOut(fadeBlockId);
		Effect.Appear(appearBlockId);
	}
}
