// rodapé geral
window.defaultStatus="Associação dos Escoteiros de Portugal - Grupo 43 - Leça da palmeira"


//função que apresenta as cinco imagens no topo da página de modo + - aleatório
function imagens() 
{
n_img=30;
n_img_mostrar=6;

n=Math.floor(Math.random() * (n_img-n_img_mostrar));
for(i=0;i<n_img_mostrar;i++)
{	// (só para teste) document.write(n);
	document.write("<img src='imagens/foto-peq/"+n+".jpg' height='60'> ");n=n+1;
}
}
imagens()
//adicionar aos favoritos
function ad_favoritos() {
	if (navigator.appName == "Microsoft Internet Explorer")
		window.external.AddFavorite('http://aep43.web.pt','AEP 43 - Leça da Palmeira');
	else if (browsName == "Netscape")
		alert ("\nPara adicionar esta página aos favoritos faça CTRL+D");
}



function newWindow(mypage,myname,w,h,features) {
  if(screen.width){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  }else{winl = 0;wint =0;}
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open(mypage,myname,settings);
  win.window.focus();
}

