function iebugshow(id,stylewide)
{
	document.all(id).className = stylewide;
}

function iebugunshow(id,stylenormal)
{
	document.all(id).className = stylenormal;
}

function iebugpeek(id,stylewide)
{
	document.all(id).className = stylewide;
}

function iebugunpeek(id,stylenormal)
{
	if (document.activeElement.id != id)
		document.all(id).className = stylenormal;
}

