var ie4 = document.all;
var dom = document.getElementById;
var startOpacity = 0;
var divNameToUse = '';

function findElt(name) 
{
	return ie4 ? eval("document.all." + name) : document.getElementById(name);
}
function fadeIn(divName) 
{
	if (divName != null) 
	{
		startOpacity=0;
		divNameToUse = divName;
	}
	var theDiv = findElt(divNameToUse);
	if (startOpacity >= 100) 
	{
		return;
	}
	startOpacity += 5;

	if (theDiv.filters) 
	{
		theDiv.filters.alpha.opacity=startOpacity;
	}
	else if (theDiv.style.MozOpacity) 
	{
		theDiv.style.MozOpacity = startOpacity/101;
	}
	else if (theDiv.style.opacity) 
	{
		theDiv.style.opacity = startOpacity/101;
	}
	setTimeout("fadeIn()",75);
		
}
