function changeColor(sender,colorFondo,colorTexto,texto)
{
	if (IE)
	{
	sender.style.backgroundColor=colorFondo;
	sender.style.color=colorTexto;
	//sender.style.cursor='hand'
	//dsc.innerHTML=texto;
	}

	if (NS)
	{
   	document.classes.Main.all.backgroundColor="green";
	document.classes.Main.all.fontSize="18pt";
	document.classes.Main.all.fontWeight="bold";
	document.ids.NewTopic.color="blue";
	}
}

var NS = (document.layers) ;
var IE = (document.all) ;