function displayFlash(swf, hauteur, largeur, alternatif)
{
	document.write('<object type="application/x-shockwave-flash" data="'+swf+'" width="'+hauteur+'" height="'+largeur+'">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+swf+'" />');
	document.write(alternatif);
	document.write('</object>');
}

function ouvrir(l,h,s,url) { 
		hauteur=Math.round((screen.availHeight-h)/2);
		largeur=Math.round((screen.availWidth-l)/2);
		l=l+20;
		h=h+20;
		w=window.open(url, "site", "toolbar=0,location=0,directories=0,status=0, scrollbars="+s+",resizable=1,menubar=0,top="+hauteur+",left="+largeur+",width="+l+",height="+h);
		w.focus();
	}

function CaricaFoto(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",height="+altez;
  finestra=window.open(img,"",stringa);
}