function showBlock(id) {
  if ($(id) != null) $(id).style.display = 'block';
}

function hideBlock(id) {
  if ($(id) != null) $(id).style.display = 'none';
}

function hideMenu(id) {
  mto = setTimeout('hideBlock("'+id+'")',200);
}

function showMenu(id) {
  var itens = new Array("_smn_linhas", "_smn_empresa");
  for(i in itens) {
    if(itens[i] != id) hideBlock(itens[i]);
  }
  if(typeof(mto) != 'undefined') clearTimeout(mto);
  showBlock(id);
}


function triggerHideMenu(id) {
	mto = setTimeout('hideId("'+id+'")',200);
}

function showMenuStatic(id, type) {	
	if(type && type == 'linhas') {
		var itens = new Array("_smn_app_in", "_smn_app_id");
	}
	if(type && type == 'drop') {
		var itens = new Array("_smn_linhas", "_smn_empresa");
	}
	for(i in itens) {		
		if(itens[i] != id) hideBlock(itens[i]);
	}	
	var o = document.getElementById(id);
	if (typeof(mto) != 'undefined') clearTimeout(mto);
	if (typeof(o) != 'undefined') o.style.display = 'block';
}

function setInnerHTML(f, t) {
	document.getElementById(t).innerHTML = document.getElementById(f).innerHTML;
	document.getElementById(t).style.display = 'block';
}

/* Antigo */
function showId(id) {
	var o = document.getElementById(id);
	if(o.style.display != 'block') {
		o.style.display = 'block';
	} else {
		o.style.display = 'none';
	}
}

function hideId(id) {
	var o = document.getElementById(id);
	o.style.display = 'none';
}

function setApp(id) {
	var content = document.getElementById(id);
	var target = document.getElementById('_appcore');
	if(content)	target.innerHTML = content.innerHTML;	
}
