function showDiv(obj,num,len)
{
	for(var id = 1;id<=len;id++)
	{
	var ss=obj+id;
	var snav =obj+"Series"+id;
	if(id==num)
	{
		try{document.getElementById(ss).style.display="block"}catch(e){};
		try
		{
		//for( i=1, i<len,i++){document.getElementById(snav).className="noactive";}
		document.getElementById(snav).className="over"
		}
		catch(e){};
		}
		else
		{
			try{document.getElementById(ss).style.display="none"}catch(e){};
			try{document.getElementById(snav).className="out"}catch(e){};
		}
	}  
}

function changeselectpix(vstr)
{
  if (vstr!="")
  {
    var url="/aspx/search.aspx?searchby=addfield&columnid=74&keyword="+vstr;
    window.location.href=url;
  }
  else
  {
	return;  
  }
}
