function high(which2)
	{
	theobject=which2
	highlighting=setInterval("highlightit(theobject)",10)
	}

function low(which2)
	{
	clearInterval(highlighting)
	if (which2.style.MozOpacity)
		which2.style.MozOpacity=0.3
	else if (which2.filters)
		which2.filters.alpha.opacity=60
	}

function highlightit(cur2)
	{
	if (cur2.style.MozOpacity<1)
		cur2.style.MozOpacity=parseFloat(cur2.style.MozOpacity)+0.1
	else if (cur2.filters&&cur2.filters.alpha.opacity<100)
		cur2.filters.alpha.opacity+=10
	else if (window.highlighting)
		clearInterval(highlighting)
	}


function regenerate()
	{
	window.location.reload()
	}

function regenerate2()
	{
	if (document.layers)
		{
		appear();
		setTimeout("window.onresize=regenerate",450)
		}
	}

function changetext(whichcontent)
	{
	if (document.all||document.getElementById)
		{
		cross_el=document.getElementById? document.getElementById("descriptions"):document.all.descriptions
		cross_el.innerHTML=whichcontent
		}
	else if (document.layers)
		{
		document.d1.document.d2.document.write(whichcontent)
		document.d1.document.d2.document.close()
		}

	}

function appear()
	{
	document.d1.visibility='show';
	}

regenerate2();
	