window.defaultStatus = "AdoraiNet - O Som Sem Fronteiras"
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;
}

<!-- 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-->

function abre_pedido(pagina,largura,altura) {

//pega a resolução do visitante
w = screen.width;
h = screen.height;

//divide a resolução por 2, obtendo o centro do monitor
meio_w = w/2;
meio_h = h/2;

//diminui o valor da metade da resolução pelo tamanho da janela, fazendo com q ela fique centralizada
altura2 = altura/2;
largura2 = largura/2;
meio1 = meio_h-altura2;
meio2 = meio_w-largura2;

//abre a nova janela, já com a sua devida posição
window.open(pagina,'','height=' + altura + ', width=' + largura + ', top='+meio1+', left='+meio2+''); 
}