167 lines
5.2 KiB
JavaScript
167 lines
5.2 KiB
JavaScript
|
//<script language="Javascript">
|
|||
|
function MM_goToURL() {
|
|||
|
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
|
|||
|
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
|
|||
|
}
|
|||
|
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
|||
|
window.open(theURL,winName,features);
|
|||
|
}
|
|||
|
function MM_findObj(n, d) {
|
|||
|
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
|
|||
|
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
|
|||
|
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
|
|||
|
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
|
|||
|
if(!x && document.getElementById) x=document.getElementById(n); return x;
|
|||
|
}
|
|||
|
function MM_showHideLayers() {
|
|||
|
var i,p,v,obj,args=MM_showHideLayers.arguments;
|
|||
|
for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
|
|||
|
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
|
|||
|
obj.visibility=v; }
|
|||
|
}
|
|||
|
function MM_displayLayers() {
|
|||
|
var i,disp,obj,args=MM_displayLayers.arguments;
|
|||
|
for (i=0; i<(args.length/2); i++)
|
|||
|
if ((obj=MM_findObj(args[2*i]))!=null)
|
|||
|
{ disp=args[2*i + 1];
|
|||
|
if (obj.style)
|
|||
|
disp=(disp=='show')?'block':'none';
|
|||
|
obj.style.display=disp; }
|
|||
|
}
|
|||
|
function openAide(URL) {
|
|||
|
var nouvelleFenetre = window.open(URL,'aide','resizable=yes,scrollbars=yes,width=800,height=300,left=0,top=0');
|
|||
|
nouvelleFenetre.window.focus();
|
|||
|
}
|
|||
|
function openDoc(URL) {
|
|||
|
var nouvelleFenetre = window.open(URL,'doc','scrollbars=yes');
|
|||
|
nouvelleFenetre.window.focus();
|
|||
|
}
|
|||
|
function homeCurseur(f,c) {
|
|||
|
document.forms[f-1].elements[c-1].focus();
|
|||
|
}
|
|||
|
function selectChamp(f,c) {
|
|||
|
document.forms[f-1].elements[c-1].focus();
|
|||
|
document.forms[f-1].elements[c-1].select();
|
|||
|
}
|
|||
|
function verifChamp(f,c,val,d) {
|
|||
|
if(document.forms[f-1].elements[c-1].value.length>(val-1))
|
|||
|
document.forms[f-1].elements[d-1].focus();
|
|||
|
}
|
|||
|
function confirmAbandonAccueil(a) {
|
|||
|
if(confirm("Vous allez perdre la saisie de votre dossier en cours.\nVoulez-vous vraiment abandonner?"))
|
|||
|
a.href="../home.html";
|
|||
|
else
|
|||
|
a.href="javascript:;";
|
|||
|
}
|
|||
|
function confirmAbandonConsult(a) {
|
|||
|
if(confirm("Vous allez perdre la saisie de votre dossier en cours.\nVoulez-vous vraiment abandonner?"))
|
|||
|
a.href="../consultation/consultation.html";
|
|||
|
else
|
|||
|
a.href="javascript:;";
|
|||
|
}
|
|||
|
function confirmAbandonDeclar(a) {
|
|||
|
if(confirm("Vous allez perdre la saisie de votre dossier en cours.\nVoulez-vous vraiment abandonner?"))
|
|||
|
a.href="../declaration/rib_declar.html";
|
|||
|
else
|
|||
|
a.href="javascript:;";
|
|||
|
}
|
|||
|
function confirmAbandonPortail(a) {
|
|||
|
if(confirm("Vous allez perdre la saisie de votre dossier en cours.\nVoulez-vous vraiment abandonner?"))
|
|||
|
a.href="../../portail.html";
|
|||
|
else
|
|||
|
a.href="javascript:;";
|
|||
|
}
|
|||
|
function confirmAbandonQuitter(a) {
|
|||
|
if(confirm("Vous allez perdre la saisie de votre dossier en cours.\nVoulez-vous vraiment abandonner?"))
|
|||
|
a.href="../commun/ferme_session.html";
|
|||
|
else
|
|||
|
a.href="javascript:;";
|
|||
|
}
|
|||
|
function confirmAbandonSuppr(a) {
|
|||
|
if(confirm("Vous allez perdre la saisie de votre dossier en cours.\nVoulez-vous vraiment abandonner?"))
|
|||
|
a.href="../suppression/rib_suppr.html";
|
|||
|
else
|
|||
|
a.href="javascript:;";
|
|||
|
}
|
|||
|
function alertNoTitul() {
|
|||
|
window.alert("Aucun titulaire rattach<63> !");
|
|||
|
}
|
|||
|
function alertNoIP() {
|
|||
|
window.alert("Aucun incident de paiement de ch<63>que <20> valider !");
|
|||
|
}
|
|||
|
function cocherTout(f) {
|
|||
|
var cocher = document.forms[f-1].chkAll.checked;
|
|||
|
var frmElmt = document.forms[f-1].elements;
|
|||
|
for (var i=0; i<frmElmt.length; i++)
|
|||
|
{if(frmElmt[i].type == "checkbox")
|
|||
|
frmElmt[i].checked = cocher;}
|
|||
|
}
|
|||
|
function decocherTout(f) {
|
|||
|
document.forms[f-1].chkAll.checked = false;
|
|||
|
}
|
|||
|
function validerPcs(pcs) {
|
|||
|
document.forms[0].txtPcs.value = pcs;
|
|||
|
}
|
|||
|
function validerCodeCommune(comm) {
|
|||
|
document.forms[0].txtCommuneNaiss.value = comm;
|
|||
|
}
|
|||
|
function validerNj(nj) {
|
|||
|
document.forms[0].txtNj.value = nj;
|
|||
|
}
|
|||
|
function validerNaf(naf) {
|
|||
|
document.forms[0].txtNaf.value = naf;
|
|||
|
}
|
|||
|
function alertDegrade() {
|
|||
|
window.alert("Mise <20> jour indisponible !");
|
|||
|
}
|
|||
|
function controlerSaisieDate(item)
|
|||
|
{
|
|||
|
var car;
|
|||
|
var reNumeric = new RegExp("[0-9]");
|
|||
|
var codeTouche;
|
|||
|
|
|||
|
codeTouche = event.keyCode;
|
|||
|
if (codeTouche != 13)
|
|||
|
{
|
|||
|
car = String.fromCharCode(codeTouche);
|
|||
|
|
|||
|
// teste si le caract<63>re est un entier
|
|||
|
if (reNumeric.test(car))
|
|||
|
{
|
|||
|
// si la longueur de la chaine d<>j<EFBFBD> saisie est 2 ou 5 on ajoute un "."
|
|||
|
if(item.value.length==2 || item.value.length==5)
|
|||
|
item.value += ".";
|
|||
|
}
|
|||
|
// teste si le caract<63>re est "."
|
|||
|
else if(car == ".")
|
|||
|
{
|
|||
|
// si le "." ne sera pas plac<61> apr<70>s le 1 ou 5 caract<63>re, on annule la frappe
|
|||
|
if(!(item.value.length==2 || item.value.length==5))
|
|||
|
event.returnValue = false;
|
|||
|
}
|
|||
|
else // annule la frappe
|
|||
|
{
|
|||
|
event.returnValue = false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
function controlerNumeric(item)
|
|||
|
{
|
|||
|
var car;
|
|||
|
var reNumeric = new RegExp("[0-9]");
|
|||
|
var codeTouche;
|
|||
|
|
|||
|
codeTouche = event.keyCode;
|
|||
|
if (codeTouche != 13)
|
|||
|
{
|
|||
|
car = String.fromCharCode(codeTouche);
|
|||
|
|
|||
|
// teste si le caract<63>re est un entier
|
|||
|
if (reNumeric.test(car))
|
|||
|
event.returnValue = true;
|
|||
|
else // annule la frappe
|
|||
|
{
|
|||
|
event.returnValue = false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|