<!--
function popupWindow(url, nom) {
    x = screen.availWidth - 10;
    y = screen.availHeight - 100;
	winId = open(url, nom, "width=" + x + ",height=" + y +
                           ",screenX=0,screenY=0,left=0,top=0" +
                           ",location,menubar,resizable,scrollbars,status,toolbar");
}
//-->