<!-- Script Hide/Show   INICIO/BEGIN     -->
function toggle(id,action) {
if (document.getElementById)
  {
  var theitem = document.getElementById(id);
  
  if (action == 'maximised') {
   theitem.style.display = 'block';    
   }
  else {
   theitem.style.display = 'none';    
   }    

  document.getElementById(id +'-control').className = action;

  }
}
<!-- Script Hide/Show FIM/END-->

window.defaultStatus = "NOTRE COMUNICAÇÃO"
function abre_extrato(sURL){
newwindow=open(sURL,"extrato","scrollbars=yes,toolbar=no,directories=no,menubar=no,resizable=no,status=no,width=750,height=600, top=50, left=15");
}

function abre_fotos(sURL){
newwindow=open(sURL,"fotos","scrollbars=no,toolbar=no,directories=no,menubar=no,resizable=no,status=no,width=760,height=420, top=20, left=15");

}

function checaform(){
	
	if(document.pedidos.NUMERO_DA_BANCA.value=="" )
	{
		alert( "Digite o Número da Banca" );
			document.pedidos.NUMERO_DA_BANCA.focus();
				return false;
	}

	if(document.pedidos.TELEFONE.value=="" )
	{
		alert( "Digite o Telefone" );
			document.pedidos.TELEFONE.focus();
				return false;
	}

	if(document.pedidos.NOME_REVISTA.value=="" )
	{
		alert( "Digite o Nome da Revista" );
			document.pedidos.NOME_REVISTA.focus();
				return false;
	}
	
		if(document.pedidos.EDICAO.value=="" )
	{
		alert( "Digite a Edição da Revista" );
			document.pedidos.EDICAO.focus();
				return false;
	}
	
			if(document.pedidos.QUANTIDADE.value=="" )
	{
		alert( "Digite a Quantidade de Revistas" );
			document.pedidos.QUANTIDADE.focus();
				return false;
	}
	
return true;
}
	
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}