// JavaScript Document
function fullWindow(url) {
var str = "left=0,screenX=0,top=0,screenY=0,scrollbars=yes";
if (window.screen) {
var ah = screen.availHeight - 30;
var aw = screen.availWidth - 10;
str += ",height=" + ah;
str += ",innerHeight=" + ah;
str += ",width=" + aw;
str += ",innerWidth=" + aw;
}
win=window.open(url, "w", str);
}
    
function OuvrirPopup(page,nom,option) {
       window.open(page,nom,option);
    }

function Choixpage(numpage){
if(numpage==1){document.exp_pub.action="../include/export_pub_rtf.php";}
if(numpage==2){document.exp_pub.action="../include/export_pub_excel.php";}
document.exp_pub.submit();
}
