<!--
//  Copyright © 2004 Siti Tous droits réservés


function VersionNavigateur(Netscape, Explorer)
{
  if (( (navigator.appVersion.substring(0,3) >= Netscape) && (navigator.appName == 'Netscape')) ||
  ( (navigator.appVersion.substring(0,3) >= Explorer) && (navigator.appName.substring(0,9) == 'Microsoft') ))
      return true;
  else return false;
}


function fenetre(url,name,features)
{
  var smallwindow = window.open(url,name,features);
  smallwindow.focus();
}
function resizescreen()
{
    window.resizeTo(screen.width,screen.height);
}

// confirmer

function ConfirmPopupForm(form,mess)
{
    if (window.confirm(mess))
    {
        form.submit();
    }

}
var textischanged = false;

function OnChangeText(form)
{
    //form.Reserver.disabled = true;
    textischanged = true;
}

//-->


