
function fct_popup(url , texte_lien , nom_popup , height, width)
{
document.write("<a href='#' onClick=\"window.open('" + url + "','" + nom_popup + "','left=0,top=0,toolbar=no,scrollbars=yes,height=" + height + ",width=" + width + "');\">" + texte_lien + "</a>");
}
function fct_popup_vignette(url_image,url_vignette,nom_popup, nom_vignette, vignette_height, pop_height, pop_width)
{
document.write("<a href='#' onClick=\"window.open('" + url_image + "','" + nom_popup + "','left=0,top=0,toolbar=no,scrollbars=yes, height=" + pop_height +", width=" + pop_width +"');\"><img src=\"" + url_vignette + "\" name=\"" + nom_vignette + "\" border=\"0\" id=\"" + nom_vignette + "\" height=\""+ vignette_height +"\"></a>")
}

