		// indice Page
		function indice() {
			// Tab
			document.getElementById('seccionIndice').className = 'SelectedTab';
			document.getElementById('seccionInstalar').className = 'Tab';
			// Page
			document.getElementById('indice').style.display= 'block';
			document.getElementById('seccionIndice').className = 'SelectedTab';
			document.getElementById('instalar').style.display = 'none';
		}
		// Installation Page
		function instalar() {
			// Tab
			document.getElementById('seccionIndice').className = 'Tab';
			document.getElementById('seccionInstalar').className = 'SelectedTab';
			// Page
			document.getElementById('indice').style.display= 'none';
			document.getElementById('instalar').style.display = 'block';
		}
		// uso Page
		function uso() {
			// Tab
			document.getElementById('seccionIndice').className = 'Tab';
			document.getElementById('seccionInstalar').className = 'Tab';
			// Page
			document.getElementById('indice').style.display= 'none';		
			document.getElementById('instalar').style.display = 'none';
		}
		
		function ContentSize(size)
//文章字体调整
{
	var obj=document.all.article;
	obj.style.fontSize=size+"px";
}

//删除确认
  function  delproject(sid)
  {
  
  if(window.confirm('是否要删除此项目信息?'))
  {
	var url = "delok.html";		
	window.location.href=url;
	}
  }
   function  delinvest(sid)
  {
  
  if(window.confirm('是否要删除此投资信息?'))
  {
	var url = "delok.html";		
	window.location.href=url;
	}
  }
     function  delservice(sid)
  {
  
  if(window.confirm('是否要删除此服务信息?'))
  {
	var url = "delok.html";		
	window.location.href=url;
	}
  }
     function  delinformation(sid)
  {
  
  if(window.confirm('是否要删除此条资讯?'))
  {
	var url = "delok.html";		
	window.location.href=url;
	}
  }
     function  delfavorite(sid)
  {
  
  if(window.confirm('是否要删除此条收藏?'))
  {
	var url = "delok.html";		
	window.location.href=url;
	}
  }

function CheckAgreeState() { 
	if (FormRegiste.agree.checked) 
	{ 
		FormRegiste.okagree.disabled=false
	} 
	else 
	{ 
		FormRegiste.okagree.disabled=true 
	} 
} 

function selectAll() {
	var chk = document.getElementById("chkAll").checked;	
	for (i=0;i<document.all.length;i++) {
		if (document.all[i].name=="checkId") document.all[i].checked=chk;
	}
}

var divnone='none'
function menuShow(divname,divblock,div_display_name)
{

	var stdiv = document.getElementById(divname);
	var stdiv_display = document.getElementById(div_display_name);
		stdiv_display.style.display=divblock
}
