function insert_flash (p_src,p_name,p_width,p_height) {
	document.write('<embed src="' + p_src + '" name="' + p_name + '" width="' + p_width + '" height="' + p_height + '" wmode="transparent" quality="high"  align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
}

function affichage_popup(nom_de_la_page, nom_interne_de_la_fenetre)
{
window.open (nom_de_la_page, nom_interne_de_la_fenetre, config='height=600, width=800, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no,top=300,left=300')
}

function affichage_fiche_lei(nom_de_la_page, nom_interne_de_la_fenetre)
{
	tw=1000;
 	th=800;
 	if (tw>screen.Width-80) tw=screen.Width-80
 	if (th>screen.Height-80) th=screen.Height-80
 
	var leftPos = (screen.availWidth-tw) / 2 ;
 	var topPos = (screen.availHeight-th) / 2 ;
  	fileWin = window.open(nom_de_la_page,nom_interne_de_la_fenetre,'width='+ tw +'px,height='+ th +'px,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,titlebar=0,location=no,directories=no,status=no,top=' + topPos + ',left=' + leftPos);
 	fileWin.focus();
 
}

