// JavaScript Document
function setColor(obj, raton)
{
  //obj2 = findObj(objName);
  if (obj.style)
  {
  	if (raton > 0)
	{
		var id=0;
    	obj.style.backgroundColor = '#3333CC';
		id=obj.id;
  		
	} else {
		obj.style.backgroundColor = '#CCCCFF';
	}
  }
  
}

function setcss(obj)
{	
	//document.bgColor = obj.bgColor;
	//alert(obj.bgColor);
	//document.styleSheets[0].disabled=true;
	//document.styleSheets[1].disabled=true;
	//document.styleSheets[2].disabled=true;
	//document.styleSheets[3].disabled=true;
  	//document.styleSheets[id].disabled=false;
	
	//document.getElementById('logo1').bgcolor='FFFFFF';
	//document.getElementById('bod').style.backgroundColor=obj.bgColor;
	//document.getElementById('bod').style.backgroundImage="../agroindusd/logo_trans.gif"
	opener.document.getElementById('bod').style.backgroundColor=obj.bgColor;
	
	document.getElementById('bod').style.backgroundColor=obj.bgColor;
}
function setcss2(obj)
{	
	
	//parent.frames[0].document.getElementById('bod').style.backgroundColor=obj.bgColor;
	document.getElementById('bod').style.backgroundColor=obj.bgColor;
	document.getElementById('bod').style.backgroundColor=obj.bgColor;
	//document.getElementById('bod').style.backgroundColor=obj.bgColor;
}

