// retourne un objet xmlHttpRequest.
// méthode compatible entre tous les navigateurs (IE/Firefox/Opera)
function getXMLHTTP(){
  var xhr=null;
  if(window.XMLHttpRequest) // Firefox et autres
  xhr = new XMLHttpRequest();
  else if(window.ActiveXObject){ // Internet Explorer
    try {
      xhr = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        xhr = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (e1) {
        xhr = null;
      }
    }
  }
  else { // XMLHttpRequest non supporté par le navigateur
    alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
  }
  return xhr;
}

var _documentForm=null; // le formulaire contenant notre champ texte
var _inputField=null; // le champ texte lui-même
var _submitButton=null; // le bouton submit de notre formulaire

function initAutoComplete(field){
  _inputField=field;
  _inputField.autocomplete="off";
  creeAutocompletionDiv();
  _currentInputFieldValue=_inputField.value;
  _oldInputFieldValue=_currentInputFieldValue;
  cacheResults("",new Array())
  document.onkeydown=onKeyDownHandler;
  _inputField.onkeyup=onKeyUpHandler;
  _inputField.onblur=onBlurHandler;
  window.onresize=onResizeHandler;
  // Premier déclenchement de la fonction dans 200 millisecondes
  setTimeout("mainLoop()",200)
}

var _oldInputFieldValue=""; // valeur précédente du champ texte
var _currentInputFieldValue=""; // valeur actuelle du champ texte
var _resultCache=new Object(); // mécanisme de cache des requetes

// tourne en permanence pour suggerer suite à un changement du champ texte
function mainLoop(){
  if(_oldInputFieldValue!=_currentInputFieldValue){
    var valeur=escapeURI(_currentInputFieldValue);
    var suggestions=_resultCache[_currentInputFieldValue];
    if(suggestions){ // la réponse était encore dans le cache
      metsEnPlace(valeur,suggestions)
    }else{
      callSuggestions(valeur) // appel distant
    }
    _inputField.focus()
  }
  _oldInputFieldValue=_currentInputFieldValue;
  setTimeout("mainLoop()",200); // la fonction se redéclenchera dans 200 ms
  return true
}

// echappe les caractère spéciaux
function escapeURI(La){
  if(encodeURIComponent) {
    return encodeURIComponent(La);
  }
  if(escape) {
    return escape(La)
  }
}

var _xmlHttp = null; //l'objet xmlHttpRequest utilisé pour contacter le serveur
var _adresseRecherche = "autocomplete.php" //l'adresse à interroger pour trouver les suggestions

function callSuggestions(valeur){
  if(_xmlHttp&&_xmlHttp.readyState!=0){
    _xmlHttp.abort()
  }
  _xmlHttp=getXMLHTTP();
  if(_xmlHttp){
    //appel à l'url distante.
    _xmlHttp.open("GET",_adresseRecherche+"?recherche="+valeur,true);
    _xmlHttp.onreadystatechange=function() {
      if(_xmlHttp.readyState==4&&_xmlHttp.responseXML) {
        var liste = traiteXmlSuggestions(_xmlHttp.responseXML)
        cacheResults(valeur,liste)
        metsEnPlace(valeur,liste)
      }
    };
    // envoi de la requete
    _xmlHttp.send(null)
  }
}

// Mecanisme de caching des réponses
function cacheResults(debut,suggestions){
  _resultCache[debut]=suggestions
}

// Transformation XML en tableau
function traiteXmlSuggestions(xmlDoc) {
  var options = xmlDoc.getElementsByTagName('option');
  var optionsListe = new Array();
  for (var i=0; i < options.length; ++i) {
    optionsListe.push(options[i].firstChild.data);
  }
  return optionsListe;
}

//insère une règle avec son nom
function insereCSS(nom,regle){
  if (document.styleSheets) {
    var I=document.styleSheets[0];
    if(I.addRule){ // méthode IE
      I.addRule(nom,regle)
    }else if(I.insertRule){ // méthode DOM
      I.insertRule(nom+" { "+regle+" }",I.cssRules.length)
    }
  }
}

function initStyle(){
  var AutoCompleteDivListeStyle="font-size: 13px; font-family: arial,sans-serif; word-wrap:break-word; ";
  var AutoCompleteDivStyle="display: block; padding-left: 3; padding-right: 3; height: 16px; overflow: hidden; background-color: white;";
  var AutoCompleteDivActStyle="background-color: #3366cc; color: white ! important; ";
  insereCSS(".AutoCompleteDivListeStyle",AutoCompleteDivListeStyle);
  insereCSS(".AutoCompleteDiv",AutoCompleteDivStyle);
  insereCSS(".AutoCompleteDivAct",AutoCompleteDivActStyle);
}

function setStylePourElement(c,name){
  c.className=name;
}

// calcule le décalage à gauche
function calculateOffsetLeft(r){
  return calculateOffset(r,"offsetLeft")
}

// calcule le décalage vertical
function calculateOffsetTop(r){
  return calculateOffset(r,"offsetTop")
}

function calculateOffset(r,attr){
  var kb=0;
  while(r){
    kb+=r[attr];
    r=r.offsetParent
  }
  return kb
}

// calcule la largeur du champ
function calculateWidth(){
  return _inputField.offsetWidth-2*1
}

function setCompleteDivSize(){
  if(_completeDiv){
    _completeDiv.style.left=calculateOffsetLeft(_inputField)+"px";
    _completeDiv.style.top=calculateOffsetTop(_inputField)+_inputField.offsetHeight-1+"px";
    _completeDiv.style.width=calculateWidth()+"px"
  }
}

function creeAutocompletionDiv() {
  initStyle();
  _completeDiv=document.createElement("DIV");
  _completeDiv.id="completeDiv";
  var borderLeftRight=1;
  var borderTopBottom=1;
  _completeDiv.style.borderRight="black "+borderLeftRight+"px solid";
  _completeDiv.style.borderLeft="black "+borderLeftRight+"px solid";
  _completeDiv.style.borderTop="black "+borderTopBottom+"px solid";
  _completeDiv.style.borderBottom="black "+borderTopBottom+"px solid";
  _completeDiv.style.zIndex="1";
  _completeDiv.style.paddingRight="0";
  _completeDiv.style.paddingLeft="0";
  _completeDiv.style.paddingTop="0";
  _completeDiv.style.paddingBottom="0";
  setCompleteDivSize();
  _completeDiv.style.visibility="hidden";
  _completeDiv.style.position="absolute";
  _completeDiv.style.backgroundColor="white";
  document.body.appendChild(_completeDiv);
  setStylePourElement(_completeDiv,"AutoCompleteDivListeStyle");
}

function metsEnPlace(valeur, liste){
  while(_completeDiv.childNodes.length>0) {
    _completeDiv.removeChild(_completeDiv.childNodes[0]);
  }
  // mise en place des suggestions
  for(var f=0; f<liste.length; ++f){
    var nouveauDiv=document.createElement("DIV");
    nouveauDiv.onmousedown=divOnMouseDown;
    nouveauDiv.onmouseover=divOnMouseOver;
    nouveauDiv.onmouseout=divOnMouseOut;
    setStylePourElement(nouveauDiv,"AutoCompleteDiv");
    var nouveauSpan=document.createElement("SPAN");
    nouveauSpan.innerHTML=liste[f]; // le texte de la suggestion
    nouveauDiv.appendChild(nouveauSpan);
    _completeDiv.appendChild(nouveauDiv)
  }
  PressAction();
  if(_completeDivRows>0) {
    _completeDiv.height=16*_completeDivRows+4;
  } else {
    hideCompleteDiv();
  }

}

var _lastKeyCode=null;

// Handler pour le keydown du document
var onKeyDownHandler=function(event){
  // accès evenement compatible IE/Firefox
  if(!event&&window.event) {
    event=window.event;
  }
  // on enregistre la touche ayant déclenché l'evenement
  if(event) {
    _lastKeyCode=event.keyCode;
  }
}

var _eventKeycode = null;

// Handler pour le keyup de lu champ texte
var onKeyUpHandler=function(event){
  // accès evenement compatible IE/Firefox
  if(!event&&window.event) {
    event=window.event;
  }
  _eventKeycode=event.keyCode;
  // Dans les cas touches touche haute(38) ou touche basse (40)
  if(_eventKeycode==40||_eventKeycode==38) {
    // on autorise le blur du champ (traitement dans onblur)
    blurThenGetFocus();
  }
  // taille de la selection
  var N=rangeSize(_inputField);
  // taille du texte avant la selection (selection = suggestion d'autocomplétion)
  var v=beforeRangeSize(_inputField);
  // contenu du champ texte
  var V=_inputField.value;
  if(_eventKeycode!=0){
    if(N>0&&v!=-1) {
      // on recupere uniquement le champ texte tapé par l'utilisateur
      V=V.substring(0,v);
    }
    // 13 = touche entrée
    if(_eventKeycode==13||_eventKeycode==3){
      var d=_inputField;
      // on mets en place l'ensemble du champ texte en repoussant la selection
      if(_inputField.createTextRange){
        var t=_inputField.createTextRange();
        t.moveStart("character",_inputField.value.length);
        _inputField.select()
      } else if (d.setSelectionRange){
        _inputField.setSelectionRange(_inputField.value.length,_inputField.value.length)
      }
    } else {
      // si on a pas pu agrandir le champ non selectionné, on le mets en place violemment.
      if(_inputField.value!=V) {
        _inputField.value=V
      }
    }
  }
  // si la touche n'est ni haut, ni bas, on stocke la valeur utilisateur du champ
  if(_eventKeycode!=40&&_eventKeycode!=38) {
    // le champ courant n est pas change si key Up ou key Down
  	_currentInputFieldValue=V;
  }
  if(handleCursorUpDownEnter(_eventKeycode)&&_eventKeycode!=0) {
    // si on a préssé une touche autre que haut/bas/enter
    PressAction();
  }
}

// Change la suggestion selectionné.
// cette méthode traite les touches haut, bas et enter
function handleCursorUpDownEnter(eventCode){
  if(eventCode==40){
    highlightNewValue(_highlightedSuggestionIndex+1);
    return false
  }else if(eventCode==38){
    highlightNewValue(_highlightedSuggestionIndex-1);
    return false
  }else if(eventCode==13||eventCode==3){
    return false
  }
  return true
}

var _completeDivRows = 0;
var _completeDivDivList = null;
var _highlightedSuggestionIndex = -1;
var _highlightedSuggestionDiv = null;

// gère une touche pressée autre que haut/bas/enter
function PressAction(){
  _highlightedSuggestionIndex=-1;
  var suggestionList=_completeDiv.getElementsByTagName("div");
  var suggestionLongueur=suggestionList.length;
  // on stocke les valeurs précédentes
  // nombre de possibilités de complétion
  _completeDivRows=suggestionLongueur;
  // possiblités de complétion
  _completeDivDivList=suggestionList;
  // si le champ est vide, on cache les propositions de complétion
  if(_currentInputFieldValue==""||suggestionLongueur==0){
    hideCompleteDiv()
  }else{
    showCompleteDiv()
  }
  var trouve=false;
  // si on a du texte sur lequel travailler
  if(_currentInputFieldValue.length>0){
    var indice;
    // T vaut true si on a dans la liste de suggestions un mot commencant comme l'entrée utilisateur
    for(indice=0; indice<suggestionLongueur; indice++){
      if(getSuggestion(suggestionList.item(indice)).toUpperCase().indexOf(_currentInputFieldValue.toUpperCase())==0) {
        trouve=true;
        break
      }
    }
  }
  // on désélectionne toutes les suggestions
  for(var i=0; i<suggestionLongueur; i++) {
    setStylePourElement(suggestionList.item(i),"AutoCompleteDiv");
  }
  // si l'entrée utilisateur (n) est le début d'une suggestion (n-1) on sélectionne cette suggestion avant de continuer
  if(trouve){
    _highlightedSuggestionIndex=indice;
    _highlightedSuggestionDiv=suggestionList.item(_highlightedSuggestionIndex);
  }else{
    _highlightedSuggestionIndex=-1;
    _highlightedSuggestionDiv=null
  }
  var supprSelection=false;
  switch(_eventKeycode){
    // cursor left, cursor right, page up, page down, others??
    case 8:
    case 33:
    case 34:
    case 35:
    case 35:
    case 36:
    case 37:
    case 39:
    case 45:
    case 46:
      // on supprime la suggestion du texte utilisateur
      supprSelection=true;
      break;
    default:
      break
  }
  // si on a une suggestion (n-1) sélectionnée
  if(!supprSelection&&_highlightedSuggestionDiv){
    setStylePourElement(_highlightedSuggestionDiv,"AutoCompleteDivAct");
    var z;
    if(trouve) {
      z=getSuggestion(_highlightedSuggestionDiv).substr(0);
    } else {
      z=_currentInputFieldValue;
    }
    if(z!=_inputField.value){
      if(_inputField.value!=_currentInputFieldValue) {
        return;
      }
      // si on peut créer des range dans le document
      if(_inputField.createTextRange||_inputField.setSelectionRange) {
        _inputField.value=z;
      }
      // on sélectionne la fin de la suggestion
      if(_inputField.createTextRange){
        var t=_inputField.createTextRange();
        t.moveStart("character",_currentInputFieldValue.length);
        t.select()
      }else if(_inputField.setSelectionRange){
        _inputField.setSelectionRange(_currentInputFieldValue.length,_inputField.value.length)
      }
    }
  }else{
    // sinon, plus aucune suggestion de sélectionnée
    _highlightedSuggestionIndex=-1;
  }
}

var _cursorUpDownPressed = null;

// permet le blur du champ texte après que la touche haut/bas ai été pressé.
// le focus est récupéré après traitement (via le timeout).
function blurThenGetFocus(){
  _cursorUpDownPressed=true;
  _inputField.blur();
  setTimeout("_inputField.focus();",10);
  return
}

// taille de la selection dans le champ input
function rangeSize(n){
  var N=-1;
  if(n.createTextRange){
    var fa=document.selection.createRange().duplicate();
    N=fa.text.length
  }else if(n.setSelectionRange){
    N=n.selectionEnd-n.selectionStart
  }
  return N
}

// taille du champ input non selectionne
function beforeRangeSize(n){
  var v=0;
  if(n.createTextRange){
    var fa=document.selection.createRange().duplicate();
    fa.moveEnd("textedit",1);
    v=n.value.length-fa.text.length
  }else if(n.setSelectionRange){
    v=n.selectionStart
  }else{
    v=-1
  }
  return v
}

// Place le curseur à la fin du champ
function cursorAfterValue(n){
  if(n.createTextRange){
    var t=n.createTextRange();
    t.moveStart("character",n.value.length);
    t.select()
  } else if(n.setSelectionRange) {
    n.setSelectionRange(n.value.length,n.value.length)
  }
}


// Retourne la valeur de la possibilite (texte) contenu dans une div de possibilite
function getSuggestion(uneDiv){
  if(!uneDiv) {
    return null;
  }
  return trimCR(uneDiv.getElementsByTagName('span')[0].firstChild.data)
}

// supprime les caractères retour chariot et line feed d'une chaine de caractères
function trimCR(chaine){
  for(var f=0,nChaine="",zb="\n\r"; f<chaine.length; f++) {
    if (zb.indexOf(chaine.charAt(f))==-1) {
      nChaine+=chaine.charAt(f);
    }
  }
  return nChaine
}

// Cache completement les choix de completion
function hideCompleteDiv(){
  _completeDiv.style.visibility="hidden"
}

// Rends les choix de completion visibles
function showCompleteDiv(){
  _completeDiv.style.visibility="visible";
  setCompleteDivSize()
}

// Change la suggestion en surbrillance
function highlightNewValue(C){
  if(!_completeDivDivList||_completeDivRows<=0) {
    return;
  }
  showCompleteDiv();
  if(C>=_completeDivRows){
    C=_completeDivRows-1
  }
  if(_highlightedSuggestionIndex!=-1&&C!=_highlightedSuggestionIndex){
    setStylePourElement(_highlightedSuggestionDiv,"AutoCompleteDiv");
    _highlightedSuggestionIndex=-1
  }
  if(C<0){
    _highlightedSuggestionIndex=-1;
    _inputField.focus();
    return
  }
  _highlightedSuggestionIndex=C;
  _highlightedSuggestionDiv=_completeDivDivList.item(C);
  setStylePourElement(_highlightedSuggestionDiv,"AutoCompleteDivAct");
  _inputField.value=getSuggestion(_highlightedSuggestionDiv);
}

// Handler de resize de la fenetre
var onResizeHandler=function(event){
  // recalcule la taille des suggestions
  setCompleteDivSize();
}

// Handler de blur sur le champ texte
var onBlurHandler=function(event){
  if(!_cursorUpDownPressed){
    // si le blur n'est pas causé par la touche haut/bas
    hideCompleteDiv();
    // Si la dernière touche préssé est tab, on passe au bouton de validation
    if(_lastKeyCode==9){
     // _submitButton.focus();
      _lastKeyCode=-1
    }
  }
  _cursorUpDownPressed=false
};

// declenchee quand on clique sur une div contenant une possibilite
var divOnMouseDown=function(){
  _inputField.value=getSuggestion(this);
  //_documentForm.submit()
};

// declenchee quand on passe sur une div de possibilite. La div précédente est passee en style normal
var divOnMouseOver=function(){
  if(_highlightedSuggestionDiv) {
    setStylePourElement(_highlightedSuggestionDiv,"AutoCompleteDiv");
  }
  setStylePourElement(this,"AutoCompleteDivAct")
};

// declenchee quand la sourie quitte une div de possiblite. La div repasse a l'etat normal
var divOnMouseOut = function(){
  setStylePourElement(this,"AutoCompleteDiv");
};






function unhideErrorDiv(elem)
{
  elem.element.style.display = 'block';
}

function deleteErrorDiv(obj)
{
  obj.element.parentNode.removeChild(obj.element);
}

function hideErrorDiv()
{
    Effect.SlideUp('errorDivWrapper', {fps: 50, beforeUpdate: unhideErrorDiv, afterFinish: deleteErrorDiv});
}

function errorAjax(xhr)
{
  displayError('Impossible de joindre le serveur');
}

function displayError(msg)
{
  if ($('errorDiv'))
  {
    $('errorDiv').innerHTML += '<br />' + msg;
  }
  else
  {
		var div = document.createElement('div');
    var wrapper = document.createElement('div');

    div.id = 'errorDiv';
    wrapper.id = 'errorDivWrapper';
    wrapper.style.zIndex='10';
    div.innerHTML = msg;
    wrapper.appendChild(div);
    wrapper.style.display = 'none';
    document.body.appendChild(wrapper);
    displayErrorDiv();
	}
}

function displayErrorDiv()
{
  Effect.SlideDown('errorDivWrapper', {fps: 50, beforeUpdate: unhideErrorDiv});
  setTimeout("hideErrorDiv()", 5000);
}//\/////
//\  overLIB 4.17 - You may not remove or change this notice.
//\  Copyright Erik Bosrup 1998-2004. All rights reserved.
//\
//\  Contributors are listed on the homepage.
//\  This file might be old, always check for the latest version at:
//\  http://www.bosrup.com/web/overlib/
//\
//\  Please read the license agreement (available through the link above)
//\  before using overLIB. Direct any licensing questions to erik@bosrup.com.
//\
//\  Do not sell this as your own work or remove this copyright notice. 
//\  For full details on copying or changing this script please read the
//\  license agreement at the link above. Please give credit on sites that
//\  use overLIB and submit changes of the script so other people can use
//\  them as well.
//   $Revision: 1.112 $                $Date: 2005/03/08 19:22:53 $
//\/////
//\mini

////////
// PRE-INIT
// Ignore these lines, configuration is below.
////////
var olLoaded = 0;var pmStart = 10000000; var pmUpper = 10001000; var pmCount = pmStart+1; var pmt=''; var pms = new Array(); var olInfo = new Info('4.17', 1);
var FREPLACE = 0; var FBEFORE = 1; var FAFTER = 2; var FALTERNATE = 3; var FCHAIN=4;
var olHideForm=0;  // parameter for hiding SELECT and ActiveX elements in IE5.5+ 
var olHautoFlag = 0;  // flags for over-riding VAUTO and HAUTO if corresponding
var olVautoFlag = 0;  // positioning commands are used on the command line
registerCommands('donothing,inarray,caparray,sticky,background,noclose,caption,left,right,center,offsetx,offsety,fgcolor,bgcolor,textcolor,capcolor,closecolor,width,border,cellpad,status,autostatus,autostatuscap,height,closetext,snapx,snapy,fixx,fixy,relx,rely,fgbackground,bgbackground,padx,pady,fullhtml,above,below,capicon,textfont,captionfont,closefont,textsize,captionsize,closesize,timeout,function,delay,hauto,vauto,closeclick,wrap,followmouse,mouseoff,closetitle,cssoff,compatmode,cssclass,fgclass,bgclass,textfontclass,captionfontclass,closefontclass');

////////
// DEFAULT CONFIGURATION
// Settings you want everywhere are set here. All of this can also be
// changed on your html page or through an overLIB call.
////////
if (typeof ol_fgcolor=='undefined') var ol_fgcolor="#F5F5F5";
if (typeof ol_bgcolor=='undefined') var ol_bgcolor="#666666";
if (typeof ol_textcolor=='undefined') var ol_textcolor="#444444";
if (typeof ol_capcolor=='undefined') var ol_capcolor="#FFFFFF";
if (typeof ol_closecolor=='undefined') var ol_closecolor="#EBEBEB";
if (typeof ol_textfont=='undefined') var ol_textfont="Arial, Helvetica, sans-serif";
if (typeof ol_captionfont=='undefined') var ol_captionfont="Arial, Helvetica, sans-serif";
if (typeof ol_closefont=='undefined') var ol_closefont="Arial, Helvetica, sans-serif";
if (typeof ol_textsize=='undefined') var ol_textsize="1";
if (typeof ol_captionsize=='undefined') var ol_captionsize="1";
if (typeof ol_closesize=='undefined') var ol_closesize="1";
if (typeof ol_width=='undefined') var ol_width="100";
if (typeof ol_border=='undefined') var ol_border="1";
if (typeof ol_cellpad=='undefined') var ol_cellpad=2;
if (typeof ol_offsetx=='undefined') var ol_offsetx=10;
if (typeof ol_offsety=='undefined') var ol_offsety=10;
if (typeof ol_text=='undefined') var ol_text="Default Text";
if (typeof ol_cap=='undefined') var ol_cap="";
if (typeof ol_sticky=='undefined') var ol_sticky=0;
if (typeof ol_background=='undefined') var ol_background="";
if (typeof ol_close=='undefined') var ol_close="Close";
if (typeof ol_hpos=='undefined') var ol_hpos=RIGHT;
if (typeof ol_status=='undefined') var ol_status="";
if (typeof ol_autostatus=='undefined') var ol_autostatus=0;
if (typeof ol_height=='undefined') var ol_height=-1;
if (typeof ol_snapx=='undefined') var ol_snapx=0;
if (typeof ol_snapy=='undefined') var ol_snapy=0;
if (typeof ol_fixx=='undefined') var ol_fixx=-1;
if (typeof ol_fixy=='undefined') var ol_fixy=-1;
if (typeof ol_relx=='undefined') var ol_relx=null;
if (typeof ol_rely=='undefined') var ol_rely=null;
if (typeof ol_fgbackground=='undefined') var ol_fgbackground="";
if (typeof ol_bgbackground=='undefined') var ol_bgbackground="";
if (typeof ol_padxl=='undefined') var ol_padxl=1;
if (typeof ol_padxr=='undefined') var ol_padxr=1;
if (typeof ol_padyt=='undefined') var ol_padyt=1;
if (typeof ol_padyb=='undefined') var ol_padyb=1;
if (typeof ol_fullhtml=='undefined') var ol_fullhtml=0;
if (typeof ol_vpos=='undefined') var ol_vpos=BELOW;
if (typeof ol_aboveheight=='undefined') var ol_aboveheight=0;
if (typeof ol_capicon=='undefined') var ol_capicon="";
if (typeof ol_frame=='undefined') var ol_frame=self;
if (typeof ol_timeout=='undefined') var ol_timeout=0;
if (typeof ol_function=='undefined') var ol_function=null;
if (typeof ol_delay=='undefined') var ol_delay=0;
if (typeof ol_hauto=='undefined') var ol_hauto=0;
if (typeof ol_vauto=='undefined') var ol_vauto=0;
if (typeof ol_closeclick=='undefined') var ol_closeclick=0;
if (typeof ol_wrap=='undefined') var ol_wrap=0;
if (typeof ol_followmouse=='undefined') var ol_followmouse=1;
if (typeof ol_mouseoff=='undefined') var ol_mouseoff=0;
if (typeof ol_closetitle=='undefined') var ol_closetitle='Close';
if (typeof ol_compatmode=='undefined') var ol_compatmode=0;
if (typeof ol_css=='undefined') var ol_css=CSSOFF;
if (typeof ol_fgclass=='undefined') var ol_fgclass="";
if (typeof ol_bgclass=='undefined') var ol_bgclass="";
if (typeof ol_textfontclass=='undefined') var ol_textfontclass="";
if (typeof ol_captionfontclass=='undefined') var ol_captionfontclass="";
if (typeof ol_closefontclass=='undefined') var ol_closefontclass="";

////////
// ARRAY CONFIGURATION
////////

// You can use these arrays to store popup text here instead of in the html.
if (typeof ol_texts=='undefined') var ol_texts = new Array("Text 0", "Text 1");
if (typeof ol_caps=='undefined') var ol_caps = new Array("Caption 0", "Caption 1");

////////
// END OF CONFIGURATION
// Don't change anything below this line, all configuration is above.
////////





////////
// INIT
////////
// Runtime variables init. Don't change for config!
var o3_text="";
var o3_cap="";
var o3_sticky=0;
var o3_background="";
var o3_close="Close";
var o3_hpos=RIGHT;
var o3_offsetx=2;
var o3_offsety=2;
var o3_fgcolor="";
var o3_bgcolor="";
var o3_textcolor="";
var o3_capcolor="";
var o3_closecolor="";
var o3_width=100;
var o3_border=1;
var o3_cellpad=2;
var o3_status="";
var o3_autostatus=0;
var o3_height=-1;
var o3_snapx=0;
var o3_snapy=0;
var o3_fixx=-1;
var o3_fixy=-1;
var o3_relx=null;
var o3_rely=null;
var o3_fgbackground="";
var o3_bgbackground="";
var o3_padxl=0;
var o3_padxr=0;
var o3_padyt=0;
var o3_padyb=0;
var o3_fullhtml=0;
var o3_vpos=BELOW;
var o3_aboveheight=0;
var o3_capicon="";
var o3_textfont="Verdana,Arial,Helvetica";
var o3_captionfont="Verdana,Arial,Helvetica";
var o3_closefont="Verdana,Arial,Helvetica";
var o3_textsize="1";
var o3_captionsize="1";
var o3_closesize="1";
var o3_frame=self;
var o3_timeout=0;
var o3_timerid=0;
var o3_allowmove=0;
var o3_function=null; 
var o3_delay=0;
var o3_delayid=0;
var o3_hauto=0;
var o3_vauto=0;
var o3_closeclick=0;
var o3_wrap=0;
var o3_followmouse=1;
var o3_mouseoff=0;
var o3_closetitle='';
var o3_compatmode=0;
var o3_css=CSSOFF;
var o3_fgclass="";
var o3_bgclass="";
var o3_textfontclass="";
var o3_captionfontclass="";
var o3_closefontclass="";

// Display state variables
var o3_x = 0;
var o3_y = 0;
var o3_showingsticky = 0;
var o3_removecounter = 0;

// Our layer
var over = null;
var fnRef, hoveringSwitch = false;
var olHideDelay;

// Decide browser version
var isMac = (navigator.userAgent.indexOf("Mac") != -1);
var olOp = (navigator.userAgent.toLowerCase().indexOf('opera') > -1 && document.createTextNode);  // Opera 7
var olNs4 = (navigator.appName=='Netscape' && parseInt(navigator.appVersion) == 4);
var olNs6 = (document.getElementById) ? true : false;
var olKq = (olNs6 && /konqueror/i.test(navigator.userAgent));
var olIe4 = (document.all) ? true : false;
var olIe5 = false; 
var olIe55 = false; // Added additional variable to identify IE5.5+
var docRoot = 'document.body';

// Resize fix for NS4.x to keep track of layer
if (olNs4) {
	var oW = window.innerWidth;
	var oH = window.innerHeight;
	window.onresize = function() { if (oW != window.innerWidth || oH != window.innerHeight) location.reload(); }
}

// Microsoft Stupidity Check(tm).
if (olIe4) {
	var agent = navigator.userAgent;
	if (/MSIE/.test(agent)) {
		var versNum = parseFloat(agent.match(/MSIE[ ](\d\.\d+)\.*/i)[1]);
		if (versNum >= 5){
			olIe5=true;
			olIe55=(versNum>=5.5&&!olOp) ? true : false;
			if (olNs6) olNs6=false;
		}
	}
	if (olNs6) olIe4 = false;
}

// Check for compatability mode.
if (document.compatMode && document.compatMode == 'CSS1Compat') {
	docRoot= ((olIe4 && !olOp) ? 'document.documentElement' : docRoot);
}

// Add window onload handlers to indicate when all modules have been loaded
// For Netscape 6+ and Mozilla, uses addEventListener method on the window object
// For IE it uses the attachEvent method of the window object and for Netscape 4.x
// it sets the window.onload handler to the OLonload_handler function for Bubbling
if(window.addEventListener) window.addEventListener("load",OLonLoad_handler,false);
else if (window.attachEvent) window.attachEvent("onload",OLonLoad_handler);

// Capture events, alt. diffuses the overlib function.
var olCheckMouseCapture = true;
if ((olNs4 || olNs6 || olIe4)) {
	olMouseCapture();
} else {
	overlib = no_overlib;
	nd = no_overlib;
	ver3fix = true;
}


////////
// PUBLIC FUNCTIONS
////////

// overlib(arg0,...,argN)
// Loads parameters into global runtime variables.
function overlib() {
	if (!olLoaded || isExclusive(overlib.arguments)) return true;
	if (olCheckMouseCapture) olMouseCapture();
	if (over) {
		over = (typeof over.id != 'string') ? o3_frame.document.all['overDiv'] : over;
		cClick();
	}

	// Load defaults to runtime.
  olHideDelay=0;
	o3_text=ol_text;
	o3_cap=ol_cap;
	o3_sticky=ol_sticky;
	o3_background=ol_background;
	o3_close=ol_close;
	o3_hpos=ol_hpos;
	o3_offsetx=ol_offsetx;
	o3_offsety=ol_offsety;
	o3_fgcolor=ol_fgcolor;
	o3_bgcolor=ol_bgcolor;
	o3_textcolor=ol_textcolor;
	o3_capcolor=ol_capcolor;
	o3_closecolor=ol_closecolor;
	o3_width=ol_width;
	o3_border=ol_border;
	o3_cellpad=ol_cellpad;
	o3_status=ol_status;
	o3_autostatus=ol_autostatus;
	o3_height=ol_height;
	o3_snapx=ol_snapx;
	o3_snapy=ol_snapy;
	o3_fixx=ol_fixx;
	o3_fixy=ol_fixy;
	o3_relx=ol_relx;
	o3_rely=ol_rely;
	o3_fgbackground=ol_fgbackground;
	o3_bgbackground=ol_bgbackground;
	o3_padxl=ol_padxl;
	o3_padxr=ol_padxr;
	o3_padyt=ol_padyt;
	o3_padyb=ol_padyb;
	o3_fullhtml=ol_fullhtml;
	o3_vpos=ol_vpos;
	o3_aboveheight=ol_aboveheight;
	o3_capicon=ol_capicon;
	o3_textfont=ol_textfont;
	o3_captionfont=ol_captionfont;
	o3_closefont=ol_closefont;
	o3_textsize=ol_textsize;
	o3_captionsize=ol_captionsize;
	o3_closesize=ol_closesize;
	o3_timeout=ol_timeout;
	o3_function=ol_function;
	o3_delay=ol_delay;
	o3_hauto=ol_hauto;
	o3_vauto=ol_vauto;
	o3_closeclick=ol_closeclick;
	o3_wrap=ol_wrap;	
	o3_followmouse=ol_followmouse;
	o3_mouseoff=ol_mouseoff;
	o3_closetitle=ol_closetitle;
	o3_css=ol_css;
	o3_compatmode=ol_compatmode;
	o3_fgclass=ol_fgclass;
	o3_bgclass=ol_bgclass;
	o3_textfontclass=ol_textfontclass;
	o3_captionfontclass=ol_captionfontclass;
	o3_closefontclass=ol_closefontclass;
	
	setRunTimeVariables();
	
	fnRef = '';
	
	// Special for frame support, over must be reset...
	o3_frame = ol_frame;
	
	if(!(over=createDivContainer())) return false;

	parseTokens('o3_', overlib.arguments);
	if (!postParseChecks()) return false;

	if (o3_delay == 0) {
		return runHook("olMain", FREPLACE);
 	} else {
		o3_delayid = setTimeout("runHook('olMain', FREPLACE)", o3_delay);
		return false;
	}
}


function overlibLarge() {
	if (!olLoaded || isExclusive(overlib.arguments)) return true;
	if (olCheckMouseCapture) olMouseCapture();
	if (over) {
		over = (typeof over.id != 'string') ? o3_frame.document.all['overDiv'] : over;
		cClick();
	}

	// Load defaults to runtime.
  olHideDelay=0;
	o3_text=ol_text;
	o3_cap=ol_cap;
	o3_sticky=ol_sticky;
	o3_background=ol_background;
	o3_close=ol_close;
	o3_hpos=ol_hpos;
	o3_offsetx=ol_offsetx;
	o3_offsety=ol_offsety;
	o3_fgcolor=ol_fgcolor;
	o3_bgcolor=ol_bgcolor;
	o3_textcolor=ol_textcolor;
	o3_capcolor=ol_capcolor;
	o3_closecolor=ol_closecolor;
	o3_width=300;
	o3_border=ol_border;
	o3_cellpad=ol_cellpad;
	o3_status=ol_status;
	o3_autostatus=ol_autostatus;
	o3_height=ol_height;
	o3_snapx=ol_snapx;
	o3_snapy=ol_snapy;
	o3_fixx=ol_fixx;
	o3_fixy=ol_fixy;
	o3_relx=ol_relx;
	o3_rely=ol_rely;
	o3_fgbackground=ol_fgbackground;
	o3_bgbackground=ol_bgbackground;
	o3_padxl=ol_padxl;
	o3_padxr=ol_padxr;
	o3_padyt=ol_padyt;
	o3_padyb=ol_padyb;
	o3_fullhtml=ol_fullhtml;
	o3_vpos=ol_vpos;
	o3_aboveheight=ol_aboveheight;
	o3_capicon=ol_capicon;
	o3_textfont=ol_textfont;
	o3_captionfont=ol_captionfont;
	o3_closefont=ol_closefont;
	o3_textsize=ol_textsize;
	o3_captionsize=ol_captionsize;
	o3_closesize=ol_closesize;
	o3_timeout=ol_timeout;
	o3_function=ol_function;
	o3_delay=ol_delay;
	o3_hauto=ol_hauto;
	o3_vauto=ol_vauto;
	o3_closeclick=ol_closeclick;
	o3_wrap=ol_wrap;	
	o3_followmouse=ol_followmouse;
	o3_mouseoff=ol_mouseoff;
	o3_closetitle=ol_closetitle;
	o3_css=ol_css;
	o3_compatmode=ol_compatmode;
	o3_fgclass=ol_fgclass;
	o3_bgclass=ol_bgclass;
	o3_textfontclass=ol_textfontclass;
	o3_captionfontclass=ol_captionfontclass;
	o3_closefontclass=ol_closefontclass;
	
	setRunTimeVariables();
	
	fnRef = '';
	
	// Special for frame support, over must be reset...
	o3_frame = ol_frame;
	
	if(!(over=createDivContainer())) return false;

	parseTokens('o3_', overlib.arguments);
	if (!postParseChecks()) return false;

	if (o3_delay == 0) {
		return runHook("olMain", FREPLACE);
 	} else {
		o3_delayid = setTimeout("runHook('olMain', FREPLACE)", o3_delay);
		return false;
	}
}

// Clears popups if appropriate
function nd(time) {
	if (olLoaded && !isExclusive()) {
		hideDelay(time);  // delay popup close if time specified

		if (o3_removecounter >= 1) { o3_showingsticky = 0 };
		
		if (o3_showingsticky == 0) {
			o3_allowmove = 0;
			if (over != null && o3_timerid == 0) runHook("hideObject", FREPLACE, over);
		} else {
			o3_removecounter++;
		}
	}
	
	return true;
}

// The Close onMouseOver function for stickies
function cClick() {
	if (olLoaded) {
		runHook("hideObject", FREPLACE, over);
		o3_showingsticky = 0;	
	}	
	return false;
}

// Method for setting page specific defaults.
function overlib_pagedefaults() {
	parseTokens('ol_', overlib_pagedefaults.arguments);
}


////////
// OVERLIB MAIN FUNCTION
////////

// This function decides what it is we want to display and how we want it done.
function olMain() {
	var layerhtml, styleType;
 	runHook("olMain", FBEFORE);
 	
	if (o3_background!="" || o3_fullhtml) {
		// Use background instead of box.
		layerhtml = runHook('ol_content_background', FALTERNATE, o3_css, o3_text, o3_background, o3_fullhtml);
	} else {
		// They want a popup box.
		styleType = (pms[o3_css-1-pmStart] == "cssoff" || pms[o3_css-1-pmStart] == "cssclass");

		// Prepare popup background
		if (o3_fgbackground != "") o3_fgbackground = "background=\""+o3_fgbackground+"\"";
		if (o3_bgbackground != "") o3_bgbackground = (styleType ? "background=\""+o3_bgbackground+"\"" : o3_bgbackground);

		// Prepare popup colors
		if (o3_fgcolor != "") o3_fgcolor = (styleType ? "bgcolor=\""+o3_fgcolor+"\"" : o3_fgcolor);
		if (o3_bgcolor != "") o3_bgcolor = (styleType ? "bgcolor=\""+o3_bgcolor+"\"" : o3_bgcolor);

		// Prepare popup height
		if (o3_height > 0) o3_height = (styleType ? "height=\""+o3_height+"\"" : o3_height);
		else o3_height = "";

		// Decide which kinda box.
		if (o3_cap=="") {
			// Plain
			layerhtml = runHook('ol_content_simple', FALTERNATE, o3_css, o3_text);
		} else {
			// With caption
			if (o3_sticky) {
				// Show close text
				layerhtml = runHook('ol_content_caption', FALTERNATE, o3_css, o3_text, o3_cap, o3_close);
			} else {
				// No close text
				layerhtml = runHook('ol_content_caption', FALTERNATE, o3_css, o3_text, o3_cap, "");
			}
		}
	}	

	// We want it to stick!
	if (o3_sticky) {
		if (o3_timerid > 0) {
			clearTimeout(o3_timerid);
			o3_timerid = 0;
		}
		o3_showingsticky = 1;
		o3_removecounter = 0;
	}

	// Created a separate routine to generate the popup to make it easier
	// to implement a plugin capability
	if (!runHook("createPopup", FREPLACE, layerhtml)) return false;

	// Prepare status bar
	if (o3_autostatus > 0) {
		o3_status = o3_text;
		if (o3_autostatus > 1) o3_status = o3_cap;
	}

	// When placing the layer the first time, even stickies may be moved.
	o3_allowmove = 0;

	// Initiate a timer for timeout
	if (o3_timeout > 0) {          
		if (o3_timerid > 0) clearTimeout(o3_timerid);
		o3_timerid = setTimeout("cClick()", o3_timeout);
	}

	// Show layer
	runHook("disp", FREPLACE, o3_status);
	runHook("olMain", FAFTER);

	return (olOp && event && event.type == 'mouseover' && !o3_status) ? '' : (o3_status != '');
}

////////
// LAYER GENERATION FUNCTIONS
////////
// These functions just handle popup content with tags that should adhere to the W3C standards specification.

// Makes simple table without caption
function ol_content_simple(text) {
	txt='<table width="'+o3_width+ '" border="0" cellpadding="'+o3_border+'" cellspacing="0" '+(o3_bgclass ? 'class="'+o3_bgclass+'"' : o3_bgcolor+' '+o3_height)+'><tr><td><table width="100%" border="0" cellpadding="' + o3_cellpad + '" cellspacing="0" '+(o3_fgclass ? 'class="'+o3_fgclass+'"' : o3_fgcolor+' '+o3_fgbackground+' '+o3_height)+'><tr><td valign="TOP"'+(o3_textfontclass ? ' class="'+o3_textfontclass+'">' : '>')+(o3_textfontclass ? '' : wrapStr(0,o3_textsize,'text'))+text+(o3_textfontclass ? '' : wrapStr(1,o3_textsize))+'</td></tr></table></td></tr></table>';

	set_background("");
	return txt;
}

// Makes table with caption and optional close link
function ol_content_caption(text,title,close) {
	var nameId;
	closing="";
	closeevent="onmouseover";
	if (o3_closeclick==1) closeevent= (o3_closetitle ? "title='" + o3_closetitle +"'" : "") + " onclick";
	if (o3_capicon!="") {
		nameId=' hspace=\"5\"'+' align=\"middle\" alt=\"\"';
		if (typeof o3_dragimg!='undefined'&&o3_dragimg) nameId=' hspace=\"5\"'+' name=\"'+o3_dragimg+'\" id=\"'+o3_dragimg+'\" align=\"middle\" alt=\"Drag Enabled\" title=\"Drag Enabled\"';
		o3_capicon='<img src=\"'+o3_capicon+'\"'+nameId+' />';
	}

	if (close != "") 
		closing='<td '+(!o3_compatmode && o3_closefontclass ? 'class="'+o3_closefontclass : 'align="RIGHT')+'"><a href="javascript:return '+fnRef+'cClick();"'+((o3_compatmode && o3_closefontclass) ? ' class="' + o3_closefontclass + '" ' : ' ')+closeevent+'="return '+fnRef+'cClick();">'+(o3_closefontclass ? '' : wrapStr(0,o3_closesize,'close'))+close+(o3_closefontclass ? '' : wrapStr(1,o3_closesize,'close'))+'</a></td>';
	txt='<table width="'+o3_width+ '" border="0" cellpadding="'+o3_border+'" cellspacing="0" '+(o3_bgclass ? 'class="'+o3_bgclass+'"' : o3_bgcolor+' '+o3_bgbackground+' '+o3_height)+'><tr><td><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td'+(o3_captionfontclass ? ' class="'+o3_captionfontclass+'">' : '>')+(o3_captionfontclass ? '' : '<b>'+wrapStr(0,o3_captionsize,'caption'))+o3_capicon+title+(o3_captionfontclass ? '' : wrapStr(1,o3_captionsize)+'</b>')+'</td>'+closing+'</tr></table><table width="100%" border="0" cellpadding="' + o3_cellpad + '" cellspacing="0" '+(o3_fgclass ? 'class="'+o3_fgclass+'"' : o3_fgcolor+' '+o3_fgbackground+' '+o3_height)+'><tr><td valign="TOP"'+(o3_textfontclass ? ' class="'+o3_textfontclass+'">' :'>')+(o3_textfontclass ? '' : wrapStr(0,o3_textsize,'text'))+text+(o3_textfontclass ? '' : wrapStr(1,o3_textsize)) + '</td></tr></table></td></tr></table>';

	set_background("");
	return txt;
}

// Sets the background picture,padding and lots more. :)
function ol_content_background(text,picture,hasfullhtml) {
	if (hasfullhtml) {
		txt=text;
	} else {
		txt='<table width="'+o3_width+'" border="0" cellpadding="0" cellspacing="0" height="'+o3_height+'"><tr><td colspan="3" height="'+o3_padyt+'"></td></tr><tr><td width="'+o3_padxl+'"></td><td valign="TOP" width="'+(o3_width-o3_padxl-o3_padxr)+(o3_textfontclass ? '" class="'+o3_textfontclass : '')+'">'+(o3_textfontclass ? '' : wrapStr(0,o3_textsize,'text'))+text+(o3_textfontclass ? '' : wrapStr(1,o3_textsize))+'</td><td width="'+o3_padxr+'"></td></tr><tr><td colspan="3" height="'+o3_padyb+'"></td></tr></table>';
	}

	set_background(picture);
	return txt;
}

// Loads a picture into the div.
function set_background(pic) {
	if (pic == "") {
		if (olNs4) {
			over.background.src = null; 
		} else if (over.style) {
			over.style.backgroundImage = "none";
		}
	} else {
		if (olNs4) {
			over.background.src = pic;
		} else if (over.style) {
			over.style.width=o3_width + 'px';
			over.style.backgroundImage = "url("+pic+")";
		}
	}
}

////////
// HANDLING FUNCTIONS
////////
var olShowId=-1;

// Displays the popup
function disp(statustext) {
	runHook("disp", FBEFORE);
	
	if (o3_allowmove == 0) {
		runHook("placeLayer", FREPLACE);
		(olNs6&&olShowId<0) ? olShowId=setTimeout("runHook('showObject', FREPLACE, over)", 1) : runHook("showObject", FREPLACE, over);
		o3_allowmove = (o3_sticky || o3_followmouse==0) ? 0 : 1;
	}
	
	runHook("disp", FAFTER);

	if (statustext != "") self.status = statustext;
}

// Creates the actual popup structure
function createPopup(lyrContent){
	runHook("createPopup", FBEFORE);
	
	if (o3_wrap) {
		var wd,ww,theObj = (olNs4 ? over : over.style);
		theObj.top = theObj.left = ((olIe4&&!olOp) ? 0 : -10000) + (!olNs4 ? 'px' : 0);
		layerWrite(lyrContent);
		wd = (olNs4 ? over.clip.width : over.offsetWidth);
		if (wd > (ww=windowWidth())) {
			lyrContent=lyrContent.replace(/\&nbsp;/g, ' ');
			o3_width=ww;
			o3_wrap=0;
		} 
	}

	layerWrite(lyrContent);
	
	// Have to set o3_width for placeLayer() routine if o3_wrap is turned on
	if (o3_wrap) o3_width=(olNs4 ? over.clip.width : over.offsetWidth);
	
	runHook("createPopup", FAFTER, lyrContent);

	return true;
}

// Decides where we want the popup.
function placeLayer() {
	var placeX, placeY, widthFix = 0;
	
	// HORIZONTAL PLACEMENT, re-arranged to work in Safari
	if (o3_frame.innerWidth) widthFix=18; 
	iwidth = windowWidth();

	// Horizontal scroll offset
	winoffset=(olIe4) ? eval('o3_frame.'+docRoot+'.scrollLeft') : o3_frame.pageXOffset;

	placeX = runHook('horizontalPlacement',FCHAIN,iwidth,winoffset,widthFix);

	// VERTICAL PLACEMENT, re-arranged to work in Safari
	if (o3_frame.innerHeight) {
		iheight=o3_frame.innerHeight;
	} else if (eval('o3_frame.'+docRoot)&&eval("typeof o3_frame."+docRoot+".clientHeight=='number'")&&eval('o3_frame.'+docRoot+'.clientHeight')) { 
		iheight=eval('o3_frame.'+docRoot+'.clientHeight');
	}			

	// Vertical scroll offset
	scrolloffset=(olIe4) ? eval('o3_frame.'+docRoot+'.scrollTop') : o3_frame.pageYOffset;
	placeY = runHook('verticalPlacement',FCHAIN,iheight,scrolloffset);

	// Actually move the object.
	repositionTo(over, placeX, placeY);
}

// Moves the layer
function olMouseMove(e) {
	var e = (e) ? e : event;

	if (e.pageX) {
		o3_x = e.pageX;
		o3_y = e.pageY;
	} else if (e.clientX) {
		o3_x = eval('e.clientX+o3_frame.'+docRoot+'.scrollLeft');
		o3_y = eval('e.clientY+o3_frame.'+docRoot+'.scrollTop');
	}
	
	if (o3_allowmove == 1) runHook("placeLayer", FREPLACE);

	// MouseOut handler
	if (hoveringSwitch && !olNs4 && runHook("cursorOff", FREPLACE)) {
		(olHideDelay ? hideDelay(olHideDelay) : cClick());
		hoveringSwitch = !hoveringSwitch;
	}
}

// Fake function for 3.0 users.
function no_overlib() { return ver3fix; }

// Capture the mouse and chain other scripts.
function olMouseCapture() {
	capExtent = document;
	var fN, str = '', l, k, f, wMv, sS, mseHandler = olMouseMove;
	var re = /function[ ]*(\w*)\(/;
	
	wMv = (!olIe4 && window.onmousemove);
	if (document.onmousemove || wMv) {
		if (wMv) capExtent = window;
		f = capExtent.onmousemove.toString();
		fN = f.match(re);
		if (fN == null) {
			str = f+'(e); ';
		} else if (fN[1] == 'anonymous' || fN[1] == 'olMouseMove' || (wMv && fN[1] == 'onmousemove')) {
			if (!olOp && wMv) {
				l = f.indexOf('{')+1;
				k = f.lastIndexOf('}');
				sS = f.substring(l,k);
				if ((l = sS.indexOf('(')) != -1) {
					sS = sS.substring(0,l).replace(/^\s+/,'').replace(/\s+$/,'');
					if (eval("typeof " + sS + " == 'undefined'")) window.onmousemove = null;
					else str = sS + '(e);';
				}
			}
			if (!str) {
				olCheckMouseCapture = false;
				return;
			}
		} else {
			if (fN[1]) str = fN[1]+'(e); ';
			else {
				l = f.indexOf('{')+1;
				k = f.lastIndexOf('}');
				str = f.substring(l,k) + '\n';
			}
		}
		str += 'olMouseMove(e); ';
		mseHandler = new Function('e', str);
	}

	capExtent.onmousemove = mseHandler;
	if (olNs4) capExtent.captureEvents(Event.MOUSEMOVE);
}

////////
// PARSING FUNCTIONS
////////

// Does the actual command parsing.
function parseTokens(pf, ar) {
	// What the next argument is expected to be.
	var v, mode=-1, par = (pf != 'ol_');	
	var fnMark = (par && !ar.length ? 1 : 0);

	for (i = 0; i < ar.length; i++) {
		if (mode < 0) {
			// Arg is maintext,unless its a number between pmStart and pmUpper
			// then its a command.
			if (typeof ar[i] == 'number' && ar[i] > pmStart && ar[i] < pmUpper) {
				fnMark = (par ? 1 : 0);
				i--;   // backup one so that the next block can parse it
			} else {
				switch(pf) {
					case 'ol_':
						ol_text = ar[i].toString();
						break;
					default:
						o3_text=ar[i].toString();  
				}
			}
			mode = 0;
		} else {
			// Note: NS4 doesn't like switch cases with vars.
			if (ar[i] >= pmCount || ar[i]==DONOTHING) { continue; }
			if (ar[i]==INARRAY) { fnMark = 0; eval(pf+'text=ol_texts['+ar[++i]+'].toString()'); continue; }
			if (ar[i]==CAPARRAY) { eval(pf+'cap=ol_caps['+ar[++i]+'].toString()'); continue; }
			if (ar[i]==STICKY) { if (pf!='ol_') eval(pf+'sticky=1'); continue; }
			if (ar[i]==BACKGROUND) { eval(pf+'background="'+ar[++i]+'"'); continue; }
			if (ar[i]==NOCLOSE) { if (pf!='ol_') opt_NOCLOSE(); continue; }
			if (ar[i]==CAPTION) { eval(pf+"cap='"+escSglQuote(ar[++i])+"'"); continue; }
			if (ar[i]==CENTER || ar[i]==LEFT || ar[i]==RIGHT) { eval(pf+'hpos='+ar[i]); if(pf!='ol_') olHautoFlag=1; continue; }
			if (ar[i]==OFFSETX) { eval(pf+'offsetx='+ar[++i]); continue; }
			if (ar[i]==OFFSETY) { eval(pf+'offsety='+ar[++i]); continue; }
			if (ar[i]==FGCOLOR) { eval(pf+'fgcolor="'+ar[++i]+'"'); continue; }
			if (ar[i]==BGCOLOR) { eval(pf+'bgcolor="'+ar[++i]+'"'); continue; }
			if (ar[i]==TEXTCOLOR) { eval(pf+'textcolor="'+ar[++i]+'"'); continue; }
			if (ar[i]==CAPCOLOR) { eval(pf+'capcolor="'+ar[++i]+'"'); continue; }
			if (ar[i]==CLOSECOLOR) { eval(pf+'closecolor="'+ar[++i]+'"'); continue; }
			if (ar[i]==WIDTH) { eval(pf+'width='+ar[++i]); continue; }
			if (ar[i]==BORDER) { eval(pf+'border='+ar[++i]); continue; }
			if (ar[i]==CELLPAD) { i=opt_MULTIPLEARGS(++i,ar,(pf+'cellpad')); continue; }
			if (ar[i]==STATUS) { eval(pf+"status='"+escSglQuote(ar[++i])+"'"); continue; }
			if (ar[i]==AUTOSTATUS) { eval(pf +'autostatus=('+pf+'autostatus == 1) ? 0 : 1'); continue; }
			if (ar[i]==AUTOSTATUSCAP) { eval(pf +'autostatus=('+pf+'autostatus == 2) ? 0 : 2'); continue; }
			if (ar[i]==HEIGHT) { eval(pf+'height='+pf+'aboveheight='+ar[++i]); continue; } // Same param again.
			if (ar[i]==CLOSETEXT) { eval(pf+"close='"+escSglQuote(ar[++i])+"'"); continue; }
			if (ar[i]==SNAPX) { eval(pf+'snapx='+ar[++i]); continue; }
			if (ar[i]==SNAPY) { eval(pf+'snapy='+ar[++i]); continue; }
			if (ar[i]==FIXX) { eval(pf+'fixx='+ar[++i]); continue; }
			if (ar[i]==FIXY) { eval(pf+'fixy='+ar[++i]); continue; }
			if (ar[i]==RELX) { eval(pf+'relx='+ar[++i]); continue; }
			if (ar[i]==RELY) { eval(pf+'rely='+ar[++i]); continue; }
			if (ar[i]==FGBACKGROUND) { eval(pf+'fgbackground="'+ar[++i]+'"'); continue; }
			if (ar[i]==BGBACKGROUND) { eval(pf+'bgbackground="'+ar[++i]+'"'); continue; }
			if (ar[i]==PADX) { eval(pf+'padxl='+ar[++i]); eval(pf+'padxr='+ar[++i]); continue; }
			if (ar[i]==PADY) { eval(pf+'padyt='+ar[++i]); eval(pf+'padyb='+ar[++i]); continue; }
			if (ar[i]==FULLHTML) { if (pf!='ol_') eval(pf+'fullhtml=1'); continue; }
			if (ar[i]==BELOW || ar[i]==ABOVE) { eval(pf+'vpos='+ar[i]); if (pf!='ol_') olVautoFlag=1; continue; }
			if (ar[i]==CAPICON) { eval(pf+'capicon="'+ar[++i]+'"'); continue; }
			if (ar[i]==TEXTFONT) { eval(pf+"textfont='"+escSglQuote(ar[++i])+"'"); continue; }
			if (ar[i]==CAPTIONFONT) { eval(pf+"captionfont='"+escSglQuote(ar[++i])+"'"); continue; }
			if (ar[i]==CLOSEFONT) { eval(pf+"closefont='"+escSglQuote(ar[++i])+"'"); continue; }
			if (ar[i]==TEXTSIZE) { eval(pf+'textsize="'+ar[++i]+'"'); continue; }
			if (ar[i]==CAPTIONSIZE) { eval(pf+'captionsize="'+ar[++i]+'"'); continue; }
			if (ar[i]==CLOSESIZE) { eval(pf+'closesize="'+ar[++i]+'"'); continue; }
			if (ar[i]==TIMEOUT) { eval(pf+'timeout='+ar[++i]); continue; }
			if (ar[i]==FUNCTION) { if (pf=='ol_') { if (typeof ar[i+1]!='number') { v=ar[++i]; ol_function=(typeof v=='function' ? v : null); }} else {fnMark = 0; v = null; if (typeof ar[i+1]!='number') v = ar[++i];  opt_FUNCTION(v); } continue; }
			if (ar[i]==DELAY) { eval(pf+'delay='+ar[++i]); continue; }
			if (ar[i]==HAUTO) { eval(pf+'hauto=('+pf+'hauto == 0) ? 1 : 0'); continue; }
			if (ar[i]==VAUTO) { eval(pf+'vauto=('+pf+'vauto == 0) ? 1 : 0'); continue; }
			if (ar[i]==CLOSECLICK) { eval(pf +'closeclick=('+pf+'closeclick == 0) ? 1 : 0'); continue; }
			if (ar[i]==WRAP) { eval(pf +'wrap=('+pf+'wrap == 0) ? 1 : 0'); continue; }
			if (ar[i]==FOLLOWMOUSE) { eval(pf +'followmouse=('+pf+'followmouse == 1) ? 0 : 1'); continue; }
			if (ar[i]==MOUSEOFF) { eval(pf +'mouseoff=('+pf+'mouseoff==0) ? 1 : 0'); v=ar[i+1]; if (pf != 'ol_' && eval(pf+'mouseoff') && typeof v == 'number' && (v < pmStart || v > pmUpper)) olHideDelay=ar[++i]; continue; }
			if (ar[i]==CLOSETITLE) { eval(pf+"closetitle='"+escSglQuote(ar[++i])+"'"); continue; }
			if (ar[i]==CSSOFF||ar[i]==CSSCLASS) { eval(pf+'css='+ar[i]); continue; }
			if (ar[i]==COMPATMODE) { eval(pf+'compatmode=('+pf+'compatmode==0) ? 1 : 0'); continue; }
			if (ar[i]==FGCLASS) { eval(pf+'fgclass="'+ar[++i]+'"'); continue; }
			if (ar[i]==BGCLASS) { eval(pf+'bgclass="'+ar[++i]+'"'); continue; }
			if (ar[i]==TEXTFONTCLASS) { eval(pf+'textfontclass="'+ar[++i]+'"'); continue; }
			if (ar[i]==CAPTIONFONTCLASS) { eval(pf+'captionfontclass="'+ar[++i]+'"'); continue; }
			if (ar[i]==CLOSEFONTCLASS) { eval(pf+'closefontclass="'+ar[++i]+'"'); continue; }
			i = parseCmdLine(pf, i, ar);
		}
	}

	if (fnMark && o3_function) o3_text = o3_function();
	
	if ((pf == 'o3_') && o3_wrap) {
		o3_width = 0;
		
		var tReg=/<.*\n*>/ig;
		if (!tReg.test(o3_text)) o3_text = o3_text.replace(/[ ]+/g, '&nbsp;');
		if (!tReg.test(o3_cap))o3_cap = o3_cap.replace(/[ ]+/g, '&nbsp;');
	}
	if ((pf == 'o3_') && o3_sticky) {
		if (!o3_close && (o3_frame != ol_frame)) o3_close = ol_close;
		if (o3_mouseoff && (o3_frame == ol_frame)) opt_NOCLOSE(' ');
	}
}


////////
// LAYER FUNCTIONS
////////

// Writes to a layer
function layerWrite(txt) {
	txt += "\n";
	if (olNs4) {
		var lyr = o3_frame.document.layers['overDiv'].document
		lyr.write(txt)
		lyr.close()
	} else if (typeof over.innerHTML != 'undefined') {
		if (olIe5 && isMac) over.innerHTML = '';
		over.innerHTML = txt;
	} else {
		range = o3_frame.document.createRange();
		range.setStartAfter(over);
		domfrag = range.createContextualFragment(txt);
		
		while (over.hasChildNodes()) {
			over.removeChild(over.lastChild);
		}
		
		over.appendChild(domfrag);
	}
}

// Make an object visible
function showObject(obj) {
	runHook("showObject", FBEFORE);

	var theObj=(olNs4 ? obj : obj.style);
	theObj.visibility = 'visible';

	runHook("showObject", FAFTER);
}

// Hides an object
function hideObject(obj) {
	runHook("hideObject", FBEFORE);

	var theObj=(olNs4 ? obj : obj.style);
	if (olNs6 && olShowId>0) { clearTimeout(olShowId); olShowId=0; }
	theObj.visibility = 'hidden';
	theObj.top = theObj.left = ((olIe4&&!olOp) ? 0 : -10000) + (!olNs4 ? 'px' : 0);

	if (o3_timerid > 0) clearTimeout(o3_timerid);
	if (o3_delayid > 0) clearTimeout(o3_delayid);

	o3_timerid = 0;
	o3_delayid = 0;
	self.status = "";

	if (obj.onmouseout || obj.onmouseover) {
		if (olNs4) obj.releaseEvents(Event.MOUSEOUT || Event.MOUSEOVER);
		obj.onmouseout = obj.onmouseover = null;
	}

	runHook("hideObject", FAFTER);
}

// Move a layer
function repositionTo(obj, xL, yL) {
	var theObj=(olNs4 ? obj : obj.style);
	theObj.left = xL + (!olNs4 ? 'px' : 0);
	theObj.top = yL + (!olNs4 ? 'px' : 0);
}

// Check position of cursor relative to overDiv DIVision; mouseOut function
function cursorOff() {
	var left = parseInt(over.style.left);
	var top = parseInt(over.style.top);
	var right = left + (over.offsetWidth >= parseInt(o3_width) ? over.offsetWidth : parseInt(o3_width));
	var bottom = top + (over.offsetHeight >= o3_aboveheight ? over.offsetHeight : o3_aboveheight);

	if (o3_x < left || o3_x > right || o3_y < top || o3_y > bottom) return true;

	return false;
}


////////
// COMMAND FUNCTIONS
////////

// Calls callme or the default function.
function opt_FUNCTION(callme) {
	o3_text = (callme ? (typeof callme=='string' ? (/.+\(.*\)/.test(callme) ? eval(callme) : callme) : callme()) : (o3_function ? o3_function() : 'No Function'));

	return 0;
}

// Handle hovering
function opt_NOCLOSE(unused) {
	if (!unused) o3_close = "";

	if (olNs4) {
		over.captureEvents(Event.MOUSEOUT || Event.MOUSEOVER);
		over.onmouseover = function () { if (o3_timerid > 0) { clearTimeout(o3_timerid); o3_timerid = 0; } }
		over.onmouseout = function (e) { if (olHideDelay) hideDelay(olHideDelay); else cClick(e); }
	} else {
		over.onmouseover = function () {hoveringSwitch = true; if (o3_timerid > 0) { clearTimeout(o3_timerid); o3_timerid =0; } }
	}

	return 0;
}

// Function to scan command line arguments for multiples
function opt_MULTIPLEARGS(i, args, parameter) {
  var k=i, re, pV, str='';

  for(k=i; k<args.length; k++) {
		if(typeof args[k] == 'number' && args[k]>pmStart) break;
		str += args[k] + ',';
	}
	if (str) str = str.substring(0,--str.length);

	k--;  // reduce by one so the for loop this is in works correctly
	pV=(olNs4 && /cellpad/i.test(parameter)) ? str.split(',')[0] : str;
	eval(parameter + '="' + pV + '"');

	return k;
}

// Remove &nbsp; in texts when done.
function nbspCleanup() {
	if (o3_wrap) {
		o3_text = o3_text.replace(/\&nbsp;/g, ' ');
		o3_cap = o3_cap.replace(/\&nbsp;/g, ' ');
	}
}

// Escape embedded single quotes in text strings
function escSglQuote(str) {
  return str.toString().replace(/'/g,"\\'");
}

// Onload handler for window onload event
function OLonLoad_handler(e) {
	var re = /\w+\(.*\)[;\s]+/g, olre = /overlib\(|nd\(|cClick\(/, fn, l, i;

	if(!olLoaded) olLoaded=1;

  // Remove it for Gecko based browsers
	if(window.removeEventListener && e.eventPhase == 3) window.removeEventListener("load",OLonLoad_handler,false);
	else if(window.detachEvent) { // and for IE and Opera 4.x but execute calls to overlib, nd, or cClick()
		window.detachEvent("onload",OLonLoad_handler);
		var fN = document.body.getAttribute('onload');
		if (fN) {
			fN=fN.toString().match(re);
			if (fN && fN.length) {
				for (i=0; i<fN.length; i++) {
					if (/anonymous/.test(fN[i])) continue;
					while((l=fN[i].search(/\)[;\s]+/)) != -1) {
						fn=fN[i].substring(0,l+1);
						fN[i] = fN[i].substring(l+2);
						if (olre.test(fn)) eval(fn);
					}
				}
			}
		}
	}
}

// Wraps strings in Layer Generation Functions with the correct tags
//    endWrap true(if end tag) or false if start tag
//    fontSizeStr - font size string such as '1' or '10px'
//    whichString is being wrapped -- 'text', 'caption', or 'close'
function wrapStr(endWrap,fontSizeStr,whichString) {
	var fontStr, fontColor, isClose=((whichString=='close') ? 1 : 0), hasDims=/[%\-a-z]+$/.test(fontSizeStr);
	fontSizeStr = (olNs4) ? (!hasDims ? fontSizeStr : '1') : fontSizeStr;
	if (endWrap) return (hasDims&&!olNs4) ? (isClose ? '</span>' : '</div>') : '</font>';
	else {
		fontStr='o3_'+whichString+'font';
		fontColor='o3_'+((whichString=='caption')? 'cap' : whichString)+'color';
		return (hasDims&&!olNs4) ? (isClose ? '<span style="font-family: '+quoteMultiNameFonts(eval(fontStr))+'; color: '+eval(fontColor)+'; font-size: '+fontSizeStr+';">' : '<div style="font-family: '+quoteMultiNameFonts(eval(fontStr))+'; color: '+eval(fontColor)+'; font-size: '+fontSizeStr+';">') : '<font face="'+eval(fontStr)+'" color="'+eval(fontColor)+'" size="'+(parseInt(fontSizeStr)>7 ? '7' : fontSizeStr)+'">';
	}
}

// Quotes Multi word font names; needed for CSS Standards adherence in font-family
function quoteMultiNameFonts(theFont) {
	var v, pM=theFont.split(',');
	for (var i=0; i<pM.length; i++) {
		v=pM[i];
		v=v.replace(/^\s+/,'').replace(/\s+$/,'');
		if(/\s/.test(v) && !/['"]/.test(v)) {
			v="\'"+v+"\'";
			pM[i]=v;
		}
	}
	return pM.join();
}

// dummy function which will be overridden 
function isExclusive(args) {
	return false;
}

// function will delay close by time milliseconds
function hideDelay(time) {
	if (time&&!o3_delay) {
		if (o3_timerid > 0) clearTimeout(o3_timerid);

		o3_timerid=setTimeout("cClick()",(o3_timeout=time));
	}
}

// Was originally in the placeLayer() routine; separated out for future ease
function horizontalPlacement(browserWidth, horizontalScrollAmount, widthFix) {
	var placeX, iwidth=browserWidth, winoffset=horizontalScrollAmount;
	var parsedWidth = parseInt(o3_width);

	if (o3_fixx > -1 || o3_relx != null) {
		// Fixed position
		placeX=(o3_relx != null ? ( o3_relx < 0 ? winoffset +o3_relx+ iwidth - parsedWidth - widthFix : winoffset+o3_relx) : o3_fixx);
	} else {  
		// If HAUTO, decide what to use.
		if (o3_hauto == 1) {
			if ((o3_x - winoffset) > (iwidth / 2)) {
				o3_hpos = LEFT;
			} else {
				o3_hpos = RIGHT;
			}
		}  		

		// From mouse
		if (o3_hpos == CENTER) { // Center
			placeX = o3_x+o3_offsetx-(parsedWidth/2);

			if (placeX < winoffset) placeX = winoffset;
		}

		if (o3_hpos == RIGHT) { // Right
			placeX = o3_x+o3_offsetx;

			if ((placeX+parsedWidth) > (winoffset+iwidth - widthFix)) {
				placeX = iwidth+winoffset - parsedWidth - widthFix;
				if (placeX < 0) placeX = 0;
			}
		}
		if (o3_hpos == LEFT) { // Left
			placeX = o3_x-o3_offsetx-parsedWidth;
			if (placeX < winoffset) placeX = winoffset;
		}  	

		// Snapping!
		if (o3_snapx > 1) {
			var snapping = placeX % o3_snapx;

			if (o3_hpos == LEFT) {
				placeX = placeX - (o3_snapx+snapping);
			} else {
				// CENTER and RIGHT
				placeX = placeX+(o3_snapx - snapping);
			}

			if (placeX < winoffset) placeX = winoffset;
		}
	}	

	return placeX;
}

// was originally in the placeLayer() routine; separated out for future ease
function verticalPlacement(browserHeight,verticalScrollAmount) {
	var placeY, iheight=browserHeight, scrolloffset=verticalScrollAmount;
	var parsedHeight=(o3_aboveheight ? parseInt(o3_aboveheight) : (olNs4 ? over.clip.height : over.offsetHeight));

	if (o3_fixy > -1 || o3_rely != null) {
		// Fixed position
		placeY=(o3_rely != null ? (o3_rely < 0 ? scrolloffset+o3_rely+iheight - parsedHeight : scrolloffset+o3_rely) : o3_fixy);
	} else {
		// If VAUTO, decide what to use.
		if (o3_vauto == 1) {
			if ((o3_y - scrolloffset) > (iheight / 2) && o3_vpos == BELOW && (o3_y + parsedHeight + o3_offsety - (scrolloffset + iheight) > 0)) {
				o3_vpos = ABOVE;
			} else if (o3_vpos == ABOVE && (o3_y - (parsedHeight + o3_offsety) - scrolloffset < 0)) {
				o3_vpos = BELOW;
			}
		}

		// From mouse
		if (o3_vpos == ABOVE) {
			if (o3_aboveheight == 0) o3_aboveheight = parsedHeight; 

			placeY = o3_y - (o3_aboveheight+o3_offsety);
			if (placeY < scrolloffset) placeY = scrolloffset;
		} else {
			// BELOW
			placeY = o3_y+o3_offsety;
		} 

		// Snapping!
		if (o3_snapy > 1) {
			var snapping = placeY % o3_snapy;  			

			if (o3_aboveheight > 0 && o3_vpos == ABOVE) {
				placeY = placeY - (o3_snapy+snapping);
			} else {
				placeY = placeY+(o3_snapy - snapping);
			} 			

			if (placeY < scrolloffset) placeY = scrolloffset;
		}
	}

	return placeY;
}

// checks positioning flags
function checkPositionFlags() {
	if (olHautoFlag) olHautoFlag = o3_hauto=0;
	if (olVautoFlag) olVautoFlag = o3_vauto=0;
	return true;
}

// get Browser window width
function windowWidth() {
	var w;
	if (o3_frame.innerWidth) w=o3_frame.innerWidth;
	else if (eval('o3_frame.'+docRoot)&&eval("typeof o3_frame."+docRoot+".clientWidth=='number'")&&eval('o3_frame.'+docRoot+'.clientWidth')) 
		w=eval('o3_frame.'+docRoot+'.clientWidth');
	return w;			
}

// create the div container for popup content if it doesn't exist
function createDivContainer(id,frm,zValue) {
	id = (id || 'overDiv'), frm = (frm || o3_frame), zValue = (zValue || 1000);
	var objRef, divContainer = layerReference(id);

	if (divContainer == null) {
		if (olNs4) {
			divContainer = frm.document.layers[id] = new Layer(window.innerWidth, frm);
			objRef = divContainer;
		} else {
			var body = (olIe4 ? frm.document.all.tags('BODY')[0] : frm.document.getElementsByTagName("BODY")[0]);
			if (olIe4&&!document.getElementById) {
				body.insertAdjacentHTML("beforeEnd",'<div id="'+id+'"></div>');
				divContainer=layerReference(id);
			} else {
				divContainer = frm.document.createElement("DIV");
				divContainer.id = id;
				body.appendChild(divContainer);
			}
			objRef = divContainer.style;
		}

		with (objRef) {
			position = 'absolute';
			visibility = 'hidden';
			var toto;
			if(!olNs4)
				toto='px';
			else
				toto='';
			top=-10000 + toto;
			left=top;
			zIndex = zValue;
		}
	}

	return divContainer;
}

// get reference to a layer with ID=id
function layerReference(id) {
	return (olNs4 ? o3_frame.document.layers[id] : (document.all ? o3_frame.document.all[id] : o3_frame.document.getElementById(id)));
}
////////
//  PLUGIN ACTIVATION FUNCTIONS
////////

// Runs plugin functions to set runtime variables.
function setRunTimeVariables(){
	if (typeof runTime != 'undefined' && runTime.length) {
		for (var k = 0; k < runTime.length; k++) {
			runTime[k]();
		}
	}
}

// Runs plugin functions to parse commands.
function parseCmdLine(pf, i, args) {
	if (typeof cmdLine != 'undefined' && cmdLine.length) { 
		for (var k = 0; k < cmdLine.length; k++) { 
			var j = cmdLine[k](pf, i, args);
			if (j >- 1) {
				i = j;
				break;
			}
		}
	}

	return i;
}

// Runs plugin functions to do things after parse.
function postParseChecks(){
	if (typeof postParse != 'undefined' && postParse.length) {
		for (var k = 0; k < postParse.length; k++) {
			if (postParse[k]()) continue;
			return false;  // end now since have an error
		}
	}
	return true;
}


////////
//  PLUGIN REGISTRATION FUNCTIONS
////////

// Registers commands and creates constants.
function registerCommands(cmdStr) {
	if (typeof cmdStr!='string') return;

	var pM = cmdStr.split(',');
	pms = pms.concat(pM);

	for (var i = 0; i< pM.length; i++) {
		eval(pM[i].toUpperCase()+'='+pmCount++);
	}
}

// Registers no-parameter commands
function registerNoParameterCommands(cmdStr) {
	if (!cmdStr && typeof cmdStr!='string') return;
	pmt=(!pmt) ? cmdStr : pmt + ',' + cmdStr;
}

// Register a function to hook at a certain point.
function registerHook(fnHookTo, fnRef, hookType, optPm) {
	var hookPt, last = typeof optPm;
	
	if (fnHookTo == 'plgIn'||fnHookTo == 'postParse') return;
	if (typeof hookPts == 'undefined') hookPts = new Array();
	if (typeof hookPts[fnHookTo] == 'undefined') hookPts[fnHookTo] = new FunctionReference();

	hookPt = hookPts[fnHookTo];

	if (hookType != null) {
		if (hookType == FREPLACE) {
			hookPt.ovload = fnRef;  // replace normal overlib routine
			if (fnHookTo.indexOf('ol_content_') > -1) hookPt.alt[pms[CSSOFF-1-pmStart]]=fnRef; 

		} else if (hookType == FBEFORE || hookType == FAFTER) {
			var hookPt=(hookType == 1 ? hookPt.before : hookPt.after);

			if (typeof fnRef == 'object') {
				hookPt = hookPt.concat(fnRef);
			} else {
				hookPt[hookPt.length++] = fnRef;
			}

			if (optPm) hookPt = reOrder(hookPt, fnRef, optPm);

		} else if (hookType == FALTERNATE) {
			if (last=='number') hookPt.alt[pms[optPm-1-pmStart]] = fnRef;
		} else if (hookType == FCHAIN) {
			hookPt = hookPt.chain; 
			if (typeof fnRef=='object') hookPt=hookPt.concat(fnRef); // add other functions 
			else hookPt[hookPt.length++]=fnRef;
		}

		return;
	}
}

// Register a function that will set runtime variables.
function registerRunTimeFunction(fn) {
	if (isFunction(fn)) {
		if (typeof runTime == 'undefined') runTime = new Array();
		if (typeof fn == 'object') {
			runTime = runTime.concat(fn);
		} else {
			runTime[runTime.length++] = fn;
		}
	}
}

// Register a function that will handle command parsing.
function registerCmdLineFunction(fn){
	if (isFunction(fn)) {
		if (typeof cmdLine == 'undefined') cmdLine = new Array();
		if (typeof fn == 'object') {
			cmdLine = cmdLine.concat(fn);
		} else {
			cmdLine[cmdLine.length++] = fn;
		}
	}
}

// Register a function that does things after command parsing. 
function registerPostParseFunction(fn){
	if (isFunction(fn)) {
		if (typeof postParse == 'undefined') postParse = new Array();
		if (typeof fn == 'object') {
			postParse = postParse.concat(fn);
		} else {
			postParse[postParse.length++] = fn;
		}
	}
}

////////
//  PLUGIN REGISTRATION FUNCTIONS
////////

// Runs any hooks registered.
function runHook(fnHookTo, hookType) {
	var l = hookPts[fnHookTo], k, rtnVal, optPm, arS, ar = runHook.arguments;

	if (hookType == FREPLACE) {
		arS = argToString(ar, 2);

		if (typeof l == 'undefined' || !(l = l.ovload)) return eval(fnHookTo+'('+arS+')');
		else return eval('l('+arS+')');

	} else if (hookType == FBEFORE || hookType == FAFTER) {
		if (typeof l == 'undefined') return;
		l=(hookType == 1 ? l.before : l.after);

		if (!l.length) return;

		arS = argToString(ar, 2);
		for (var k = 0; k < l.length; k++) eval('l[k]('+arS+')'); 

	} else if (hookType == FALTERNATE) {
		optPm = ar[2];
		arS = argToString(ar, 3);

		if (typeof l == 'undefined' || (l = l.alt[pms[optPm-1-pmStart]]) == 'undefined') {
			return eval(fnHookTo+'('+arS+')');
		} else {
			return eval('l('+arS+')');
		}
	} else if (hookType == FCHAIN) {
		arS=argToString(ar,2);
		l=l.chain;

		for (k=l.length; k > 0; k--) if((rtnVal=eval('l[k-1]('+arS+')'))!=void(0)) return rtnVal;
	}
}

////////
//  UTILITY FUNCTIONS
////////

// Checks if something is a function.
function isFunction(fnRef) {
	var rtn = true;

	if (typeof fnRef == 'object') {
		for (var i = 0; i < fnRef.length; i++) {
			if (typeof fnRef[i]=='function') continue;
			rtn = false;
			break;
		}
	} else if (typeof fnRef != 'function') {
		rtn = false;
	}
	
	return rtn;
}

// Converts an array into an argument string for use in eval.
function argToString(array, strtInd, argName) {
	var jS = strtInd, aS = '', ar = array;
	argName=(argName ? argName : 'ar');
	
	if (ar.length > jS) {
		for (var k = jS; k < ar.length; k++) aS += argName+'['+k+'], ';
		aS = aS.substring(0, aS.length-2);
	}
	
	return aS;
}

// Places a hook in the correct position in a hook point.
function reOrder(hookPt, fnRef, order) {
	if (!order || typeof order == 'undefined' || typeof order == 'number') return;
	
	var newPt = new Array(), match;

	if (typeof order=='function') {
		if (typeof fnRef=='object') {
			newPt = newPt.concat(fnRef);
		} else {
			newPt[newPt.length++]=fnRef;
		}
		
		for (var i = 0; i < hookPt.length; i++) {
			match = false;
			if (typeof fnRef == 'function' && hookPt[i] == fnRef) {
				continue;
			} else {
				for(var j = 0; j < fnRef.length; j++) if (hookPt[i] == fnRef[j]) {
					match = true;
					break;
				}
			}
			if (!match) newPt[newPt.length++] = hookPt[i];
		}

		newPt[newPt.length++] = order;

	} else if (typeof order == 'object') {
		if (typeof fnRef == 'object') {
			newPt = newPt.concat(fnRef);
		} else {
			newPt[newPt.length++] = fnRef;
		}
		
		for (var j = 0; j < hookPt.length; j++) {
			match = false;
			if (typeof fnRef == 'function' && hookPt[j] == fnRef) {
				continue;
			} else {
				for (var i = 0; i < fnRef.length; i++) if (hookPt[j] == fnRef[i]) {
					match = true;
					break;
				}
			}
			if (!match) newPt[newPt.length++]=hookPt[j];
		}

		for (i = 0; i < newPt.length; i++) hookPt[i] = newPt[i];
		newPt.length = 0;
		
		for (var j = 0; j < hookPt.length; j++) {
			match = false;
			for (var i = 0; i < order.length; i++) {
				if (hookPt[j] == order[i]) {
					match = true;
					break;
				}
			}
			if (!match) newPt[newPt.length++] = hookPt[j];
		}
		newPt = newPt.concat(order);
	}

	for(i = 0; i < newPt.length; i++) hookPt[i] = newPt[i];

	return hookPt;
}

////////
// OBJECT CONSTRUCTORS
////////

// Object for handling hooks.
function FunctionReference() {
	this.ovload = null;
	this.before = new Array();
	this.after = new Array();
	this.alt = new Array();
	this.chain = new Array();
}

// Object for simple access to the overLIB version used.
// Examples: simpleversion:351 major:3 minor:5 revision:1
function Info(version, prerelease) {
	this.version = version;
	this.prerelease = prerelease;

	this.simpleversion = Math.round(this.version*100);
	this.major = parseInt(this.simpleversion / 100);
	this.minor = parseInt(this.simpleversion / 10) - this.major * 10;
	this.revision = parseInt(this.simpleversion) - this.major * 100 - this.minor * 10;
	this.meets = meets;
}

// checks for Core Version required
function meets(reqdVersion) {
	return (!reqdVersion) ? false : this.simpleversion >= Math.round(100*parseFloat(reqdVersion));
}


////////
// STANDARD REGISTRATIONS
////////
registerHook("ol_content_simple", ol_content_simple, FALTERNATE, CSSOFF);
registerHook("ol_content_caption", ol_content_caption, FALTERNATE, CSSOFF);
registerHook("ol_content_background", ol_content_background, FALTERNATE, CSSOFF);
registerHook("ol_content_simple", ol_content_simple, FALTERNATE, CSSCLASS);
registerHook("ol_content_caption", ol_content_caption, FALTERNATE, CSSCLASS);
registerHook("ol_content_background", ol_content_background, FALTERNATE, CSSCLASS);
registerPostParseFunction(checkPositionFlags);
registerHook("hideObject", nbspCleanup, FAFTER);
registerHook("horizontalPlacement", horizontalPlacement, FCHAIN);
registerHook("verticalPlacement", verticalPlacement, FCHAIN);
if (olNs4||(olIe5&&isMac)||olKq) olLoaded=1;
registerNoParameterCommands('sticky,autostatus,autostatuscap,fullhtml,hauto,vauto,closeclick,wrap,followmouse,mouseoff,compatmode');
function formpop()
{
	SPPLUS = window.open('','SPPLUS','width=750,height=560,status=1');
	if (SPPLUS && !SPPLUS.closed)
	SPPLUS.focus();
	return true;
}

//Ajoute une case parcourir limité a 5
function ajouteFichier(div)
{
	var max=5;
	var maListe = document.getElementById(div);

	var tabEnfant=Array();
	var compteur=0;
	if (maListe.hasChildNodes())
	{
		var collEnfants = maListe.childNodes;
		for (var i = 0; i < collEnfants.length; i++)
		{
			if(collEnfants[i].tagName=="DIV")
				compteur++;
		}
		
	}
	
	if(compteur<(max))
	{
		//alert(compteur);
		var span = document.createElement('div');
		var input = document.createElement('input');

		span.id='fic'+compteur;
		input.setAttribute('type','file');
		input.id='upfile_'+compteur;
		input.name='upfile_'+compteur;

		span.appendChild(input);
		span.innerHTML=span.innerHTML+"<span style='padding-top: 8px'><a href='javascript: supprFichierParcourir(\""+div+"\","+compteur+");' class='lien_10_bleu_souligne'>Supprimer</a></span>";
		maListe.appendChild(span);
	}

	if(compteur==(max))
	{
		displayError('Impossible d\'envoyer plus de 5 fichiers simultanement');
	}

}

function ajouteFichierPrivate(div)
{
	var max=5;
	var maListe = document.getElementById(div);

	var tabEnfant=Array();
	var compteur=0;
	if (maListe.hasChildNodes())
	{
		var collEnfants = maListe.childNodes;
		for (var i = 0; i < collEnfants.length; i++)
		{
			if(collEnfants[i].tagName=="DIV")
				compteur++;
		}
	}
	if(compteur<(max))
	{
		//alert(compteur);
		var span = document.createElement('div');
		var input = document.createElement('input');

		//On agrandit la zone d'affichage
		if(navigator.userAgent.indexOf("MSIE 7")!=-1)
		{
			document.getElementById('blocBasGauchePrivate').style.height = document.getElementById('blocBasGauchePrivate').offsetHeight + 20 + "px";
			document.getElementById('blocBasDroitPrivate').style.height = document.getElementById('blocBasDroitPrivate').offsetHeight + 20 + "px";
			document.getElementById('blocBasDroitPrivate').style.marginTop = -187 - (20*compteur) + "px";
			document.getElementById('suiteSeparateurPrivate').style.height = document.getElementById('suiteSeparateurPrivate').offsetHeight + 20 + "px";
			document.getElementById('separateurPrivate').style.marginTop = -187 - (20*compteur) + "px";
		}
		else if(navigator.userAgent.indexOf("MSIE 6")!= -1)
		{
			document.getElementById('blocBasGauchePrivate').style.height = document.getElementById('blocBasGauchePrivate').offsetHeight + 20 + "px";
			document.getElementById('blocBasDroitPrivate').style.height = document.getElementById('blocBasDroitPrivate').offsetHeight + 20 + "px";
			document.getElementById('blocBasDroitPrivate').style.marginTop = -187 - (20*compteur) + "px";
			document.getElementById('suiteSeparateurPrivate').style.height = document.getElementById('suiteSeparateurPrivate').offsetHeight + 20 + "px";
			document.getElementById('separateurPrivate').style.marginTop = -187 - (20*compteur) + "px";
		}
		else
		{
			document.getElementById('blocBasGauchePrivate').style.height = document.getElementById('blocBasGauchePrivate').offsetHeight + 20 + "px";
			document.getElementById('blocBasDroitPrivate').style.height = document.getElementById('blocBasDroitPrivate').offsetHeight + 20 + "px";
			document.getElementById('blocBasDroitPrivate').style.marginTop = -187 - (20*compteur) + "px";
			document.getElementById('separateurPrivate').style.marginTop = -187 - (20*compteur) + "px";
			document.getElementById('suiteSeparateurPrivate').style.height = document.getElementById('suiteSeparateurPrivate').offsetHeight + 20 + "px";
		}
		
		
		span.setAttribute('id','fic'+compteur);
		
		input.setAttribute('type','file');
		input.setAttribute('id','upfile_'+compteur);
		input.setAttribute('name','upfile_'+compteur);
		
		span.appendChild(input);
		var supprFichier = document.createElement('div');
		supprFichier.setAttribute("class","supprFichier");
		supprFichier.setAttribute("className","supprFichier");
		
		var lien = document.createElement('a');
		lien.setAttribute("class","lien_11_bleu");
		lien.setAttribute("className","lien_11_bleu");
		lien.setAttribute("href","javascript: supprFichierParcourirPrivate(\""+div+"\","+compteur+");");
		
		var textLien = document.createTextNode("Supprimer");
		lien.appendChild(textLien);
		
		supprFichier.appendChild(lien);
		
		span.appendChild(supprFichier);
		
		//span.innerHTML=span.innerHTML+"<div class='supprFichier'><a class='lien_11_bleu' href='javascript: supprFichierParcourirPrivate(\""+div+"\","+compteur+");'>Supprimer</a></div>";
		maListe.appendChild(span);
	}

	if(compteur==(max))
	{
		displayError('Impossible d\'envoyer plus de 5 fichiers simultanement');
	}

}

function arrondir(nb,dec)
{
	var mul = 1;
	for (i=0;i<dec;i++)
		mul *= 10;
	var res = Math.floor(Math.abs(x=nb)*mul+0.5)/mul;
 	if (nb < 0) 
		res = -res;
 	return res;
}

//Supprime une case parcourir
function supprFichierParcourir(div, id)
{
	var maListe = document.getElementById(div);
	var span = document.getElementById('fic'+id);
	maListe.removeChild(span);
}

function supprFichierParcourirPrivate(div, id)
{
	var maListe = document.getElementById(div);
	var span = document.getElementById('fic'+id);
	maListe.removeChild(span);
	
	
	var marginTop = document.getElementById('separateurPrivate').style.marginTop;
	var tableauSeparateur = marginTop.split('px');
	
	var marginTopDroit = document.getElementById('blocBasDroitPrivate').style.marginTop;
	var tableauSeparateurDroit = marginTop.split('px');
	
	if(navigator.userAgent.indexOf("MSIE 7")!=-1)
	{
		document.getElementById('blocBasGauchePrivate').style.height = document.getElementById('blocBasGauchePrivate').offsetHeight - 20 + "px";
		document.getElementById('suiteSeparateurPrivate').style.height = document.getElementById('suiteSeparateurPrivate').offsetHeight - 20 + "px";
		document.getElementById('separateurPrivate').style.marginTop = parseInt(tableauSeparateur[0]) + 20 + "px";
		document.getElementById('blocBasDroitPrivate').style.marginTop = parseInt(tableauSeparateurDroit[0]) + 20 + "px";
		document.getElementById('blocBasDroitPrivate').style.height = document.getElementById('blocBasDroitPrivate').offsetHeight - 20 + "px";
	}
	else if(navigator.userAgent.indexOf("MSIE 6")!= -1)
	{
		document.getElementById('blocBasGauchePrivate').style.height = document.getElementById('blocBasGauchePrivate').offsetHeight - 20 + "px";
		document.getElementById('suiteSeparateurPrivate').style.height = document.getElementById('suiteSeparateurPrivate').offsetHeight - 20 + "px";
		document.getElementById('separateurPrivate').style.marginTop = parseInt(tableauSeparateur[0]) + 20 + "px";
		document.getElementById('blocBasDroitPrivate').style.marginTop = parseInt(tableauSeparateurDroit[0]) + 20 + "px";
		document.getElementById('blocBasDroitPrivate').style.height = document.getElementById('blocBasDroitPrivate').offsetHeight - 20 + "px";
	}
	else
	{
		document.getElementById('blocBasGauchePrivate').style.height = document.getElementById('blocBasGauchePrivate').offsetHeight - 20 + "px";
		document.getElementById('blocBasDroitPrivate').style.height = document.getElementById('blocBasDroitPrivate').offsetHeight - 20 + "px";
		document.getElementById('blocBasDroitPrivate').style.marginTop = parseInt(tableauSeparateurDroit[0]) + 20 + "px";
		document.getElementById('separateurPrivate').style.marginTop = parseInt(tableauSeparateur[0]) + 20 + "px";
		document.getElementById('suiteSeparateurPrivate').style.height = document.getElementById('suiteSeparateurPrivate').offsetHeight - 20 + "px";
	}
}

function initPass()
{
	new Ajax.Request('index.php?controller=zonepublic&action=initPass', {method:'post',
	postBody:'mdp1=' + $('input_mdp1').value +
	'&mdp2=' + $('input_mdp2').value +
	'&ctrl=' + $('controle').value,
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){verifPass(xhr);}
	});
  }
  
  function verifPass(xhr)
  {

	var retour = xhr.responseText;
	var resultat = retour.search(/erreur/);

	if(resultat != -1)
	{
		switch(xhr.responseText)
		{
			case 'erreur_mdp':
				displayError('Les mots de passe saisis ne sont pas identiques');
				break;
				
			case 'erreur_compte':
				displayError('Compte introuvable');
				break;
		}
	}
	else
	{
		Effect.Fade('overlay', {duration: 0.0});
		div = $('popUpBox');
		div.parentNode.removeChild(div);
		masqueAnim();
		popBox('view/popup_confirmation.php?mail='+xhr.responseText);
	}
  }
  
  function autoLogin(mail)
  {
	new Ajax.Request('index.php?controller=zonepublic&action=autoLogin', {method:'post',
	postBody:'mail=' + mail,
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){document.location.href="index.php?controller=zoneprivee&action=index";}
	});
  }
  
  function changerLien()
  {
	var cryptage=document.getElementById('privateCryptage');
	var accuse=document.getElementById('privateAccuse');
	
	var resultatCryptage="";
	var resultatAccuse="";
	
	if(cryptage.checked==true)
		resultatCryptage="cryptage=1";
	else
		resultatCryptage="cryptage=0";
		
	if(accuse.checked==true)
		resultatAccuse="accuse=1";
	else
		resultatAccuse="accuse=0";
		
	return 'view/popup_upload_private.php?'+resultatCryptage+'&'+resultatAccuse;
  
  }
  
function afficheChamp() 
{
	var cryptage=document.getElementById('privateCryptage');

	if(cryptage.checked==true)
	{
		document.getElementById("champPassFichierPrivate").style.visibility="visible";
		document.getElementById("champPassFichierPrivate").style.display="inline";
	}
	else
	{
		document.getElementById("champPassFichierPrivate").style.visibility="hidden";
		document.getElementById("champPassFichierPrivate").style.display="none";
	}
}

function afficheChampPopup() 
{
	var cryptage=document.getElementById('cryptagePrivatePopup');

	if(cryptage.checked==true)
	{
		document.getElementById("champPassFichierPrivatePopup").style.visibility="visible";
		document.getElementById("champPassFichierPrivatePopup").style.display="inline";
		agrandirPopupUpload('+');
	}
	else
	{
		document.getElementById("champPassFichierPrivatePopup").style.visibility="hidden";
		document.getElementById("champPassFichierPrivatePopup").style.display="none";
		agrandirPopupUpload('-');
	}
	
}

function transfertContact(mail)
{
	var longueur=mail.length;
	
	if(longueur > 0 && mail!="")
	{	
		document.getElementById('destinataireEnvoi_1').value=document.getElementById('destinataireEnvoi_1').value+mail+",";
	}
}

var marginTopBasIE7 = 470;
var marginTopCoinBasGaucheIE7 = 470;
var marginTopCoinBasDroitIE7 = 470;


var marginTopBasSafari = 467;
var marginTopCoinBasGaucheSafari= 467;
var marginTopCoinBasDroitSafari = 467;

function transfertContact2(mail)
{
	var divPrinc = document.getElementById('inputDestinataire');
	
	if(divPrinc.hasChildNodes())
	{
		var enfants = divPrinc.childNodes;
		var compteurElement = 1;

		for (var i = 0; i < enfants.length; i++)
		{
			if(enfants[i].tagName=='DIV')
			{
				var enfants2 = enfants[i].childNodes;
				
				for (var j = 0; j < enfants2.length; j++)
				{
						
					if(enfants2[j].tagName=='INPUT')
					{			
						if(enfants2[j].value==mail)
							return false;
					
						if(enfants2[j].id.search(/destinataireEnvoi/)!=-1)
						{	
							if(enfants2[j].id!='destinataireEnvoi_1')
							{
								if(enfants[i].value == "")
								{
									divPrinc.removeChild(enfants[i]);
								}
								
								compteurElement++;
							}
							
						}
					}
				}
			}
		}
		
		var passe =  'false';
		
		if(document.getElementById('destinataireEnvoi_1').value=="")
		{
			document.getElementById('destinataireEnvoi_1').value = mail;
			
			document.getElementById('caseDestinataireEnvoi_1').style.paddingBottom = '5px';
			
			var br = document.createElement('br');
			var link2 = document.createElement('a');
			var img = document.createElement('img');
			var br = document.createElement('br');
			
			img.setAttribute('src','styles/default/graphs/bouton_supprimer_contact.gif');
			
			link2.setAttribute('href','javascript:supprimeChamp("1");');
			//link2.setAttribute('onclick','supprimeChamp("1");');
			img.style.marginTop = '3px';
			
			link2.appendChild(img);
			
			document.getElementById('caseDestinataireEnvoi_1').appendChild(link2);
			document.getElementById('caseDestinataireEnvoi_1').appendChild(br);
			
			passe = 'true';
		}

		var newDiv = document.createElement('div');
		var newInput = document.createElement('input');
		
		compteurElement++;
		
		newDiv.setAttribute('id','caseDestinataireEnvoi_'+compteurElement);
		newDiv.style.paddingBottom = "5px";
		
		newInput.setAttribute('id', 'destinataireEnvoi_'+compteurElement);
		newInput.setAttribute('name', 'destinataireEnvoi_'+compteurElement);
		newInput.setAttribute('type','text');
		newInput.style.width = '165px';
		
		newDiv.appendChild(newInput);

		divPrinc.appendChild(newDiv);
		
		autoCompletion2(compteurElement);
		
		
		if(passe=='false')
		{
			document.getElementById('popup_upload_private').style.height = document.getElementById('popup_upload_private').offsetHeight + 26 +"px";
		
			document.getElementById('popupUploadPrivateDroit').style.height = document.getElementById('popupUploadPrivateDroit').offsetHeight + 26 +"px";
			document.getElementById('popupUploadPrivateGauche').style.height = document.getElementById('popupUploadPrivateGauche').offsetHeight + 26 +"px";
			
			if(navigator.userAgent.indexOf("MSIE 7")!=-1)
			{
				document.getElementById('popupUploadPrivateBas').style.marginTop = marginTopBasIE7 + 26 +"px";
				document.getElementById('popupUploadPrivateCoinBG').style.marginTop = marginTopCoinBasGaucheIE7 + 26 +"px";
				document.getElementById('popupUploadPrivateCoinBD').style.marginTop = marginTopCoinBasDroitIE7 + 26 +"px";
				
				marginTopBasIE7 = marginTopBasIE7 +26;
				marginTopCoinBasGaucheIE7 = marginTopCoinBasGaucheIE7 +26;
				marginTopCoinBasDroitIE7 = marginTopCoinBasDroitIE7 +26;
			}
			else if(navigator.userAgent.indexOf("Safari")!=-1)
			{
				document.getElementById('popupUploadPrivateBas').style.marginTop = marginTopBasSafari + 22 +"px";
				document.getElementById('popupUploadPrivateCoinBG').style.marginTop = marginTopCoinBasGaucheSafari + 22 +"px";
				document.getElementById('popupUploadPrivateCoinBD').style.marginTop = marginTopCoinBasDroitSafari + 22 +"px";
				
				marginTopBasSafari = marginTopBasSafari +22;
				marginTopCoinBasGaucheSafari = marginTopCoinBasGaucheSafari +22;
				marginTopCoinBasDroitSafari = marginTopCoinBasDroitSafari +22;
			}
		}
		else
		{
			document.getElementById('popup_upload_private').style.height = document.getElementById('popup_upload_private').offsetHeight + 30 +"px";
		
			document.getElementById('popupUploadPrivateDroit').style.height = document.getElementById('popupUploadPrivateDroit').offsetHeight + 30 +"px";
			document.getElementById('popupUploadPrivateGauche').style.height = document.getElementById('popupUploadPrivateGauche').offsetHeight + 30 +"px";
		
			if(navigator.userAgent.indexOf("MSIE 7")!=-1)
			{
				document.getElementById('popupUploadPrivateBas').style.marginTop = marginTopBasIE7 + 30 +"px";
				document.getElementById('popupUploadPrivateCoinBG').style.marginTop = marginTopCoinBasGaucheIE7 + 30 +"px";
				document.getElementById('popupUploadPrivateCoinBD').style.marginTop = marginTopCoinBasDroitIE7 + 30 +"px";
				
				marginTopBasIE7 = marginTopBasIE7 +30;
				marginTopCoinBasGaucheIE7 = marginTopCoinBasGaucheIE7 +30;
				marginTopCoinBasDroitIE7 = marginTopCoinBasDroitIE7 +30;
			}
			else if(navigator.userAgent.indexOf("Safari")!=-1)
			{
				document.getElementById('popupUploadPrivateBas').style.marginTop = marginTopBasSafari + 30 +"px";
				document.getElementById('popupUploadPrivateCoinBG').style.marginTop = marginTopCoinBasGaucheSafari + 30 +"px";
				document.getElementById('popupUploadPrivateCoinBD').style.marginTop = marginTopCoinBasDroitSafari + 30 +"px";
				
				marginTopBasSafari = marginTopBasSafari +30;
				marginTopCoinBasGaucheSafari = marginTopCoinBasGaucheSafari +30;
				marginTopCoinBasDroitSafari = marginTopCoinBasDroitSafari +30;
			}
				
			
		}
		
		
		if(passe=='false')
		{				
			document.getElementById('destinataireEnvoi_'+(compteurElement-1)).setAttribute('value',mail);
			var link2 = document.createElement('a');
			var img = document.createElement('img');
			var br = document.createElement('br');
			
			img.style.marginTop = '3px';
			img.setAttribute('src','styles/default/graphs/bouton_supprimer_contact.gif');
			
			link2.setAttribute('href','javascript:supprimeChamp("'+(compteurElement-1)+'");');
			//link2.setAttribute('onclick','supprimeChamp("'+(compteurElement-1)+'");');
			link2.appendChild(img);
			
			document.getElementById('caseDestinataireEnvoi_'+(compteurElement-1)).appendChild(link2);
			document.getElementById('caseDestinataireEnvoi_'+(compteurElement-1)).appendChild(br);
			
		}
	}
}

function ajouteChamp()
{
	var divPrinc = document.getElementById('inputDestinataire');
	
	if(divPrinc.hasChildNodes())
	{
		var enfants = divPrinc.childNodes;
		var compteurElement = 1;

		for (var i = 0; i < enfants.length; i++)
		{
			if(enfants[i].tagName=='DIV')
			{
				var enfants2 = enfants[i].childNodes;
				
				for (var j = 0; j < enfants2.length; j++)
				{
						
					if(enfants2[j].tagName=='INPUT')
					{			
						if(enfants2[j].value=="")
							return false;
					
						if(enfants2[j].id.search(/destinataireEnvoi/)!=-1)
						{	
							if(enfants2[j].id!='destinataireEnvoi_1')
							{
								if(enfants[i].value == "")
								{
									divPrinc.removeChild(enfants[i]);
								}
								
								compteurElement++;
							}
							
						}
					}
				}
			}
		}
		
		var newDiv = document.createElement('div');
		var newInput = document.createElement('input');
		
		compteurElement++;
		
		newDiv.setAttribute('id','caseDestinataireEnvoi_'+compteurElement);
		
		newInput.setAttribute('id', 'destinataireEnvoi_'+compteurElement);
		newInput.setAttribute('name', 'destinataireEnvoi_'+compteurElement);
		newInput.setAttribute('type','text');
		newInput.style.width = '165px';
		
		newDiv.style.paddingBottom = "5px";
		
		var link2 = document.createElement('a');
		var img = document.createElement('img');
		var br = document.createElement('br');
		
		img.style.marginTop = '3px';
		img.setAttribute('src','styles/default/graphs/bouton_supprimer_contact.gif');
		
		link2.setAttribute('href','javascript:supprimeChamp("'+(compteurElement-1)+'");');
		//link2.setAttribute('onclick','supprimeChamp("'+(compteurElement-1)+'");');
		link2.appendChild(img);
		
		document.getElementById('caseDestinataireEnvoi_'+(compteurElement-1)).appendChild(link2);
		document.getElementById('caseDestinataireEnvoi_'+(compteurElement-1)).appendChild(br);
		
		newDiv.appendChild(newInput);

		divPrinc.appendChild(newDiv);
		
		autoCompletion2(compteurElement);	

		document.getElementById('popup_upload_private').style.height = document.getElementById('popup_upload_private').offsetHeight + 26 +"px";
		
		document.getElementById('popupUploadPrivateDroit').style.height = document.getElementById('popupUploadPrivateDroit').offsetHeight + 26 +"px";
		document.getElementById('popupUploadPrivateGauche').style.height = document.getElementById('popupUploadPrivateGauche').offsetHeight + 26 +"px";
		
		if(navigator.userAgent.indexOf("MSIE 7")!=-1)
		{
			document.getElementById('popupUploadPrivateBas').style.marginTop = marginTopBasIE7 + 22 +"px";
			document.getElementById('popupUploadPrivateCoinBG').style.marginTop = marginTopCoinBasGaucheIE7 + 22 +"px";
			document.getElementById('popupUploadPrivateCoinBD').style.marginTop = marginTopCoinBasDroitIE7 + 22 +"px";
			
			marginTopBasIE7 = marginTopBasIE7 +22;
			marginTopCoinBasGaucheIE7 = marginTopCoinBasGaucheIE7 +22;
			marginTopCoinBasDroitIE7 = marginTopCoinBasDroitIE7 +22;
		}
		else if(navigator.userAgent.indexOf("Safari")!=-1)
		{
			document.getElementById('popupUploadPrivateBas').style.marginTop = marginTopBasSafari + 22 +"px";
			document.getElementById('popupUploadPrivateCoinBG').style.marginTop = marginTopCoinBasGaucheSafari + 22 +"px";
			document.getElementById('popupUploadPrivateCoinBD').style.marginTop = marginTopCoinBasDroitSafari + 22 +"px";
			
			marginTopBasSafari = marginTopBasSafari +22;
			marginTopCoinBasGaucheSafari = marginTopCoinBasGaucheSafari +22;
			marginTopCoinBasDroitSafari = marginTopCoinBasDroitSafari +22;
		}
	}
}


function ajouteChampRenvoi()
{
	var divPrinc = document.getElementById('inputDestRenvoi');
	
	if(divPrinc.hasChildNodes())
	{
		var enfants = divPrinc.childNodes;
		var compteurElement = 1;

		for (var i = 0; i < enfants.length; i++)
		{
			if(enfants[i].tagName=='DIV')
			{
				var enfants2 = enfants[i].childNodes;
				
				for (var j = 0; j < enfants2.length; j++)
				{
						
					if(enfants2[j].tagName=='INPUT')
					{			
						if(enfants2[j].value=="")
							return false;
					
						if(enfants2[j].id.search(/destinatairePrivateRenvoi/)!=-1)
						{	
							if(enfants2[j].id!='destinatairePrivateRenvoi_1')
							{
								if(enfants[i].value == "")
								{
									divPrinc.removeChild(enfants[i]);
								}
								
								compteurElement++;
							}
							
						}
					}
				}
			}
		}
		
		var newDiv = document.createElement('div');
		var newInput = document.createElement('input');
		
		compteurElement++;
		
		newDiv.setAttribute('id','caseDestinatairePrivateRenvoi_'+compteurElement);
		
		newInput.setAttribute('id', 'destinatairePrivateRenvoi_'+compteurElement);
		newInput.setAttribute('name', 'destinatairePrivateRenvoi_'+compteurElement);
		newInput.setAttribute('type','text');
		newInput.style.width = '160px';
		
		newDiv.style.paddingBottom = "5px";
		
		var link2 = document.createElement('a');
		var img = document.createElement('img');
		var br = document.createElement('br');
		
		img.setAttribute('src','styles/default/graphs/bouton_supprimer_contact.gif');
		
		link2.setAttribute('href','javascript:supprimeChamp("'+(compteurElement-1)+'");');
		//link2.setAttribute('onclick','supprimeChamp("'+(compteurElement-1)+'");');
		link2.appendChild(img);
		
		document.getElementById('caseDestinatairePrivateRenvoi_'+(compteurElement-1)).appendChild(link2);
		document.getElementById('caseDestinatairePrivateRenvoi_'+(compteurElement-1)).appendChild(br);
		
		newDiv.appendChild(newInput);

		divPrinc.appendChild(newDiv);
		
		autoCompletionRenvoi(compteurElement);	
		
		document.getElementById('popup_renvoi').style.height = document.getElementById('popup_renvoi').offsetHeight + 22 +"px";
	
		document.getElementById('popupRenvoiDroit').style.height = document.getElementById('popupRenvoiDroit').offsetHeight + 22 +"px";
		document.getElementById('popupRenvoiGauche').style.height = document.getElementById('popupRenvoiGauche').offsetHeight + 22 +"px";
			
		document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiFF + 22 + "px";
		document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiFF + 22 + "px";
		document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiFF + 22 + "px";
	
		marginTopBasPopupRenvoiFF = marginTopBasPopupRenvoiFF+22;
		marginTopBGPopupRenvoiFF = marginTopBGPopupRenvoiFF+22;
		marginTopBDPopupRenvoiFF = marginTopBDPopupRenvoiFF+22;
		
		if(navigator.userAgent.indexOf("MSIE 7")!=-1)
		{
			document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiIE7 + 0 +"px";
			document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiIE7 + 0 +"px";
			document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiIE7 + 0 +"px";
			
			marginTopBasPopupRenvoiIE7 = marginTopBasPopupRenvoiIE7 +0;
			marginTopBGPopupRenvoiIE7 = marginTopBGPopupRenvoiIE7 +0;
			marginTopBDPopupRenvoiIE7 = marginTopBDPopupRenvoiIE7 +0;
		}
		else if(navigator.userAgent.indexOf("Safari")!=-1)
		{
			document.getElementById('popupUploadPrivateBas').style.marginTop = marginTopBasPopupRenvoiSafari + 22 +"px";
			document.getElementById('popupUploadPrivateCoinBG').style.marginTop = marginTopBGPopupRenvoiSafari + 22 +"px";
			document.getElementById('popupUploadPrivateCoinBD').style.marginTop = marginTopBDPopupRenvoiSafari + 22 +"px";
			
			marginTopBasPopupRenvoiSafari = marginTopBasPopupRenvoiSafari +22;
			marginTopBGPopupRenvoiSafari = marginTopBGPopupRenvoiSafari +22;
			marginTopBDPopupRenvoiSafari = marginTopBDPopupRenvoiSafari +22;
		}
		else if(navigator.userAgent.indexOf("Mozilla")!=-1 && navigator.userAgent.indexOf("Macintosh")!=-1)
		{
			document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiFFMac + 22 + "px";
			document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiFFMac + 22 + "px";
			document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiFFMac + 22 + "px";
			
			marginTopBasPopupRenvoiFFMac = marginTopBasPopupRenvoiFFMac+22;
			marginTopBGPopupRenvoiFFMac = marginTopBGPopupRenvoiFFMac+22;
			marginTopBDPopupRenvoiFFMac = marginTopBDPopupRenvoiFFMac+22;
		}
		else if(navigator.userAgent.indexOf("MSIE 6")!=-1)
		{
			document.getElementById('popupRenvoiDroit').style.height = document.getElementById('popupRenvoiDroit').offsetHeight + 12 +"px";
			document.getElementById('popupRenvoiGauche').style.height = document.getElementById('popupRenvoiGauche').offsetHeight + 12 +"px";
			
			document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiIE6 + 12 + "px";
			document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiIE6 + 12 + "px";
			document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiIE6 + 12 + "px";
			
			marginTopBasPopupRenvoiIE6 = marginTopBasPopupRenvoiIE6+12;
			marginTopBGPopupRenvoiIE6 = marginTopBGPopupRenvoiIE6+12;
			marginTopBDPopupRenvoiIE6 = marginTopBDPopupRenvoiIE6+12;
		}
	}
}

function supprimeChamp(indice)
{
	var suppr = document.getElementById('caseDestinataireEnvoi_'+indice);
	var divPrinc = document.getElementById('inputDestinataire');
	
	divPrinc.removeChild(suppr);

	var compteur = 1;

	if(divPrinc.hasChildNodes())
	{
		var enfants = divPrinc.childNodes;
		var compteurElement = 1;

		for (var i = 0; i < enfants.length; i++)
		{
			if(enfants[i].tagName=='DIV')
			{
				enfants[i].setAttribute('id','caseDestinataireEnvoi_'+compteur);
				var enfants2 = enfants[i].childNodes;
				
				for (var j = 0; j < enfants2.length; j++)
				{
					if(enfants2[j].tagName=='INPUT')
					{			
						enfants2[j].setAttribute('id','destinataireEnvoi_'+compteur);
						enfants2[j].setAttribute('name','destinataireEnvoi_'+compteur);
					}
					
					if(enfants2[j].tagName=='A')
					{			
						//enfants2[j].setAttribute('onclick','supprimeChamp("'+compteur+'");');
						enfants2[j].setAttribute('href','javascript: supprimeChamp("'+compteur+'");');
					}
				}
				
				compteur++;
			}
		}
	}
	
	
	document.getElementById('popup_upload_private').style.height = document.getElementById('popup_upload_private').offsetHeight - 23 +"px";
	
	document.getElementById('popupUploadPrivateDroit').style.height = document.getElementById('popupUploadPrivateDroit').offsetHeight - 23 +"px";
	document.getElementById('popupUploadPrivateGauche').style.height = document.getElementById('popupUploadPrivateGauche').offsetHeight - 23 +"px";
	
	if(navigator.userAgent.indexOf("MSIE 7")!=-1)
	{
		document.getElementById('popupUploadPrivateBas').style.marginTop = marginTopBasIE7 - 23 +"px";
		document.getElementById('popupUploadPrivateCoinBG').style.marginTop = marginTopCoinBasGaucheIE7 - 23 +"px";
		document.getElementById('popupUploadPrivateCoinBD').style.marginTop = marginTopCoinBasDroitIE7 - 23 +"px";
		
		marginTopBasIE7 = marginTopBasIE7 - 23;
		marginTopCoinBasGaucheIE7 = marginTopCoinBasGaucheIE7 - 23;
		marginTopCoinBasDroitIE7 = marginTopCoinBasDroitIE7 - 23;
	}
	else if(navigator.userAgent.indexOf("Safari")!=-1)
	{
		document.getElementById('popupUploadPrivateBas').style.marginTop = marginTopBasSafari - 23 +"px";
		document.getElementById('popupUploadPrivateCoinBG').style.marginTop = marginTopCoinBasGaucheSafari - 23 +"px";
		document.getElementById('popupUploadPrivateCoinBD').style.marginTop = marginTopCoinBasDroitSafari - 23 +"px";
		
		marginTopBasSafari = marginTopBasSafari -23;
		marginTopCoinBasGaucheSafari = marginTopCoinBasGaucheSafari -23;
		marginTopCoinBasDroitSafari = marginTopCoinBasDroitSafari -23;
	}
}

function supprimeChampRenvoi(indice)
{
	var suppr = document.getElementById('caseDestinatairePrivateRenvoi_'+indice);
	var divPrinc = document.getElementById('inputDestRenvoi');
	
	divPrinc.removeChild(suppr);

	var compteur = 1;

	if(divPrinc.hasChildNodes())
	{
		var enfants = divPrinc.childNodes;
		var compteurElement = 1;

		for (var i = 0; i < enfants.length; i++)
		{
			if(enfants[i].tagName=='DIV')
			{
				enfants[i].setAttribute('id','caseDestinatairePrivateRenvoi_'+compteur);
				var enfants2 = enfants[i].childNodes;
				
				for (var j = 0; j < enfants2.length; j++)
				{
					if(enfants2[j].tagName=='INPUT')
					{			
						enfants2[j].setAttribute('id','destinatairePrivateRenvoi_'+compteur);
						enfants2[j].setAttribute('name','destinatairePrivateRenvoi_'+compteur);
					}
					
					if(enfants2[j].tagName=='A')
					{			
						//enfants2[j].setAttribute('onclick','supprimeChamp("'+compteur+'");');
						enfants2[j].setAttribute('href','javascript: supprimeChampRenvoi("'+compteur+'");');
					}
				}
				
				compteur++;
			}
		}
	}
	
	document.getElementById('popup_renvoi').style.height = document.getElementById('popup_renvoi').offsetHeight - 23 +"px";

	document.getElementById('popupRenvoiDroit').style.height = document.getElementById('popupRenvoiDroit').offsetHeight - 23 +"px";
	document.getElementById('popupRenvoiGauche').style.height = document.getElementById('popupRenvoiGauche').offsetHeight - 23 +"px";
	
	document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiFF - 23 + "px";
	document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiFF - 23 + "px";
	document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiFF - 23 + "px";
	
	marginTopBasPopupRenvoiFF = marginTopBasPopupRenvoiFF-23;
	marginTopBGPopupRenvoiFF = marginTopBGPopupRenvoiFF-23;
	marginTopBDPopupRenvoiFF = marginTopBDPopupRenvoiFF-23;
	
	if(navigator.userAgent.indexOf("MSIE 7")!=-1)
	{
		document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiIE7 - 0 +"px";
		document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiIE7 - 0 +"px";
		document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiIE7 - 0 +"px";
				
		marginTopBasPopupRenvoiIE7 = marginTopBasPopupRenvoiIE7 - 0;
		marginTopBGPopupRenvoiIE7 = marginTopBGPopupRenvoiIE7 - 0;
		marginTopBDPopupRenvoiIE7 = marginTopBDPopupRenvoiIE7 - 0;
	}
	else if(navigator.userAgent.indexOf("Safari")!=-1)
	{
		document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiSafari - 23 +"px";
		document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiSafari - 23 +"px";
		document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiSafari - 23 +"px";
		
		marginTopBasPopupRenvoiSafari = marginTopBasPopupRenvoiSafari -23;
		marginTopBGPopupRenvoiSafari = marginTopBGPopupRenvoiSafari -23;
		marginTopBDPopupRenvoiSafari = marginTopBDPopupRenvoiSafari -23;
	}
	else if(navigator.userAgent.indexOf("Mozilla")!=-1 && navigator.userAgent.indexOf("Macintosh")!=-1)
	{
		document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiFFMac - 23 + "px";
		document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiFFMac - 23 + "px";
		document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiFFMac - 23 + "px";
		
		marginTopBasPopupRenvoiFFMac = marginTopBasPopupRenvoiFFMac-23;
		marginTopBGPopupRenvoiFFMac = marginTopBGPopupRenvoiFFMac-23;
		marginTopBDPopupRenvoiFFMac = marginTopBDPopupRenvoiFFMac-23;
	}
	else if(navigator.userAgent.indexOf("MSIE 6")!=-1)
	{
		document.getElementById('popup_renvoi').style.height = document.getElementById('popup_renvoi').offsetHeight - 23 +"px";
		document.getElementById('popupRenvoiDroit').style.height = document.getElementById('popupRenvoiDroit').offsetHeight - 23 +"px";
		document.getElementById('popupRenvoiGauche').style.height = document.getElementById('popupRenvoiGauche').offsetHeight - 23 +"px";
		
		document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiIE6 - 0 + "px";
		document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiIE6 - 0 + "px";
		document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiIE6 - 0 + "px";
		
		marginTopBasPopupRenvoiIE6 = marginTopBasPopupRenvoiIE6-0;
		marginTopBGPopupRenvoiIE6 = marginTopBGPopupRenvoiIE6-0;
		marginTopBDPopupRenvoiIE6 = marginTopBDPopupRenvoiIE6-0;
	}
}

function transfertContactRenvoi(mail)
{
	var longueur=mail.length;
	
	if(longueur > 0 && mail!="")
	{	
		document.getElementById('destinatairePrivateRenvoi').value=document.getElementById('destinatairePrivateRenvoi').value+mail+",";
	}
}


var marginTopBasPopupRenvoiFF = 258;
var marginTopBGPopupRenvoiFF = 258;
var marginTopBDPopupRenvoiFF = 258;

var marginTopBasPopupRenvoiIE7 = 0;
var marginTopBGPopupRenvoiIE7 = 0;
var marginTopBDPopupRenvoiIE7 = 0;


var marginTopBasPopupRenvoiSafari = 252;
var marginTopBGPopupRenvoiSafari= 252;
var marginTopBDPopupRenvoiSafari = 252;

var marginTopBasPopupRenvoiFFMac = 244;
var marginTopBGPopupRenvoiFFMac = 244;
var marginTopBDPopupRenvoiFFMac = 244;

var marginTopBasPopupRenvoiIE6 = -4;
var marginTopBGPopupRenvoiIE6 = -4;
var marginTopBDPopupRenvoiIE6 = -4;

function transfertContactRenvoi2(mail)
{
	var divPrinc = document.getElementById('inputDestRenvoi');
	
	if(divPrinc.hasChildNodes())
	{
		var enfants = divPrinc.childNodes;
		var compteurElement = 1;

		for (var i = 0; i < enfants.length; i++)
		{
			if(enfants[i].tagName=='DIV')
			{
				var enfants2 = enfants[i].childNodes;
				
				for (var j = 0; j < enfants2.length; j++)
				{
						
					if(enfants2[j].tagName=='INPUT')
					{			
						if(enfants2[j].value==mail)
							return false;
					
						if(enfants2[j].id.search(/destinatairePrivateRenvoi/)!=-1)
						{	
							if(enfants2[j].id!='destinatairePrivateRenvoi_1')
							{
								if(enfants[i].value == "")
								{
									divPrinc.removeChild(enfants[i]);
								}
								
								compteurElement++;
							}
							
						}
					}
				}
			}
		}
		
		var passe =  'false';
		
		if(document.getElementById('destinatairePrivateRenvoi_1').value=="")
		{
			document.getElementById('destinatairePrivateRenvoi_1').value = mail;
			
			document.getElementById('caseDestinatairePrivateRenvoi_1').style.paddingBottom = '5px';
			
			var br = document.createElement('br');
			var link2 = document.createElement('a');
			var img = document.createElement('img');
			var br = document.createElement('br');
			
			img.setAttribute('src','styles/default/graphs/bouton_supprimer_contact.gif');
			
			link2.setAttribute('href','javascript:supprimeChampRenvoi("1");');
						
			link2.appendChild(img);
			
			document.getElementById('caseDestinatairePrivateRenvoi_1').appendChild(link2);
			document.getElementById('caseDestinatairePrivateRenvoi_1').appendChild(br);
			
			passe = 'true';
		}

		var newDiv = document.createElement('div');
		var newInput = document.createElement('input');
		
		compteurElement++;
		
		newDiv.setAttribute('id','caseDestinatairePrivateRenvoi_'+compteurElement);
		newDiv.style.paddingBottom = "5px";
		
		newInput.setAttribute('id', 'destinatairePrivateRenvoi_'+compteurElement);
		newInput.setAttribute('name', 'destinatairePrivateRenvoi_'+compteurElement);
		newInput.setAttribute('type','text');
		newInput.style.width = '160px';
		
		newDiv.appendChild(newInput);

		divPrinc.appendChild(newDiv);
		
		autoCompletionRenvoi(compteurElement);
		

		if(passe=='false')
		{
			document.getElementById('popup_renvoi').style.height = document.getElementById('popup_renvoi').offsetHeight + 22 +"px";
		
			document.getElementById('popupRenvoiDroit').style.height = document.getElementById('popupRenvoiDroit').offsetHeight + 22 +"px";
			document.getElementById('popupRenvoiGauche').style.height = document.getElementById('popupRenvoiGauche').offsetHeight + 22 +"px";
			
			document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiFF + 22 + "px";
			document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiFF + 22 + "px";
			document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiFF + 22 + "px";
			
			marginTopBasPopupRenvoiFF = marginTopBasPopupRenvoiFF+22;
			marginTopBGPopupRenvoiFF = marginTopBGPopupRenvoiFF+22;
			marginTopBDPopupRenvoiFF = marginTopBDPopupRenvoiFF+22;
			
			if(navigator.userAgent.indexOf("MSIE 7")!=-1)
			{
				document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiIE7 + 0 +"px";
				document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiIE7 + 0 +"px";
				document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiIE7 + 0 +"px";
				
				marginTopBasPopupRenvoiIE7 = marginTopBasPopupRenvoiIE7 +0;
				marginTopBGPopupRenvoiIE7 = marginTopBGPopupRenvoiIE7 +0;
				marginTopBDPopupRenvoiIE7 = marginTopBDPopupRenvoiIE7 +0;
			}
			else if(navigator.userAgent.indexOf("Safari")!=-1)
			{
				document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiSafari + 22 +"px";
				document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiSafari + 22 +"px";
				document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiSafari + 22 +"px";
				
				marginTopBasPopupRenvoiSafari = marginTopBasPopupRenvoiSafari +22;
				marginTopBGPopupRenvoiSafari = marginTopBGPopupRenvoiSafari +22;
				marginTopBDPopupRenvoiSafari = marginTopBDPopupRenvoiSafari +22;
			}
			else if(navigator.userAgent.indexOf("Mozilla")!=-1 && navigator.userAgent.indexOf("Macintosh")!=-1)
			{
				document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiFFMac + 22 + "px";
				document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiFFMac + 22 + "px";
				document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiFFMac + 22 + "px";
				
				marginTopBasPopupRenvoiFFMac = marginTopBasPopupRenvoiFFMac+22;
				marginTopBGPopupRenvoiFFMac = marginTopBGPopupRenvoiFFMac+22;
				marginTopBDPopupRenvoiFFMac = marginTopBDPopupRenvoiFFMac+22;
			
			}
			else if(navigator.userAgent.indexOf("MSIE 6")!=-1)
			{
				document.getElementById('popupRenvoiDroit').style.height = document.getElementById('popupRenvoiDroit').offsetHeight + 0 +"px";
				document.getElementById('popupRenvoiGauche').style.height = document.getElementById('popupRenvoiGauche').offsetHeight + 0 +"px";
				
				document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiIE6 + 0 + "px";
				document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiIE6 + 0 + "px";
				document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiIE6 + 0 + "px";
				
				marginTopBasPopupRenvoiIE6 = marginTopBasPopupRenvoiIE6+0;
				marginTopBGPopupRenvoiIE6 = marginTopBGPopupRenvoiIE6+0;
				marginTopBDPopupRenvoiIE6 = marginTopBDPopupRenvoiIE6+0;
			}
		}
		else
		{
			document.getElementById('popup_renvoi').style.height = document.getElementById('popup_renvoi').offsetHeight + 30 +"px";
		
			document.getElementById('popupRenvoiDroit').style.height = document.getElementById('popupRenvoiDroit').offsetHeight + 30 +"px";
			document.getElementById('popupRenvoiGauche').style.height = document.getElementById('popupRenvoiGauche').offsetHeight + 30 +"px";
				
			document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiFF + 30 + "px";
			document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiFF + 30 + "px";
			document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiFF + 30 + "px";
		
			marginTopBasPopupRenvoiFF = marginTopBasPopupRenvoiFF+30;
			marginTopBGPopupRenvoiFF = marginTopBGPopupRenvoiFF+30;
			marginTopBDPopupRenvoiFF = marginTopBDPopupRenvoiFF+30;
		
			if(navigator.userAgent.indexOf("MSIE 7")!=-1)
			{
				document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiIE7 + 0 +"px";
				document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiIE7 + 0 +"px";
				document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiIE7 + 0 +"px";
				
				marginTopBasPopupRenvoiIE7 = marginTopBasPopupRenvoiIE7 +0;
				marginTopBGPopupRenvoiIE7 = marginTopBGPopupRenvoiIE7 +0;
				marginTopBDPopupRenvoiIE7 = marginTopBDPopupRenvoiIE7 +0;
			}
			else if(navigator.userAgent.indexOf("Safari")!=-1)
			{
				document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiSafari + 30 +"px";
				document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiSafari + 30 +"px";
				document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiSafari + 30 +"px";
				
				marginTopBasPopupRenvoiSafari = marginTopBasPopupRenvoiSafari +30;
				marginTopBGPopupRenvoiSafari = marginTopBGPopupRenvoiSafari +30;
				marginTopBDPopupRenvoiSafari = marginTopBDPopupRenvoiSafari +30;
			}
			else if(navigator.userAgent.indexOf("Mozilla")!=-1 && navigator.userAgent.indexOf("Macintosh")!=-1)
			{
				document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiFFMac + 30 + "px";
				document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiFFMac + 30 + "px";
				document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiFFMac + 30 + "px";
				
				marginTopBasPopupRenvoiFFMac = marginTopBasPopupRenvoiFFMac+30;
				marginTopBGPopupRenvoiFFMac = marginTopBGPopupRenvoiFFMac+30;
				marginTopBDPopupRenvoiFFMac = marginTopBDPopupRenvoiFFMac+30;
			}
			else if(navigator.userAgent.indexOf("MSIE 6")!=-1)
			{
				document.getElementById('popupRenvoiDroit').style.height = document.getElementById('popupRenvoiDroit').offsetHeight + 21 +"px";
				document.getElementById('popupRenvoiGauche').style.height = document.getElementById('popupRenvoiGauche').offsetHeight + 21 +"px";
				
				document.getElementById('popupRenvoiBas').style.marginTop = marginTopBasPopupRenvoiIE6 + 0 + "px";
				document.getElementById('popupRenvoiCoinBG').style.marginTop = marginTopBGPopupRenvoiIE6 + 0 + "px";
				document.getElementById('popupRenvoiCoinBD').style.marginTop = marginTopBDPopupRenvoiIE6 + 0 + "px";
				
				marginTopBasPopupRenvoiIE6 = marginTopBasPopupRenvoiIE6+0;
				marginTopBGPopupRenvoiIE6 = marginTopBGPopupRenvoiIE6+0;
				marginTopBDPopupRenvoiIE6 = marginTopBDPopupRenvoiIE6+0;
			}
		}
		
		
		if(passe=='false')
		{
			document.getElementById('destinatairePrivateRenvoi_'+(compteurElement-1)).setAttribute('value',mail);
			var link2 = document.createElement('a');
			var img = document.createElement('img');
			var br = document.createElement('br');
			
			img.setAttribute('src','styles/default/graphs/bouton_supprimer_contact.gif');
			
			link2.setAttribute('href','javascript:supprimeChampRenvoi("'+(compteurElement-1)+'");');
			link2.appendChild(img);
			
			document.getElementById('caseDestinatairePrivateRenvoi_'+(compteurElement-1)).appendChild(link2);
			document.getElementById('caseDestinatairePrivateRenvoi_'+(compteurElement-1)).appendChild(br);
			
		}
	}
}

function verifForm()
{
	var cgv = document.getElementById('cgv');
	var cgu = document.getElementById('cgu');
	
	
	if(cgv.checked==false && cgu.checked==false)
	{
		displayError('Vous devez respecter les conditions g&eacute;n&eacute;rales de vente<br />Vous devez respecter les conditions g&eacute;n&eacute;rales d\'utilisation');
	}
	else if(cgv.checked==false)
	{
		displayError('Vous devez respecter les conditions g&eacute;n&eacute;rales de vente');
	}
	else if(cgu.checked==false)
	{
		displayError('Vous devez respecter les conditions g&eacute;n&eacute;rales d\'utilisation');
	}
	else
	{	
		var url = changerLien();
		var pass = document.getElementById("passFichier").value;
		popBox(url+"&pwd="+pass);
	}
}

function recupChamp()
{
	var test= document.getElementById('upfile_0');
}

function ajouteContact()
{
	new Ajax.Request('index.php?controller=zoneprivee&action=verifAjoutContact', {method:'post',
	postBody:'nom=' + $('nomContact').value +
	'&prenom=' + $('prenomContact').value +
	'&societe=' + $('societeContact').value +
	'&email=' + $('emailContact').value,
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){proceedAjoutContact(xhr);}
	});
}

function backgroundAccueil()
{
	document.getElementById('menuAccueil').style.backgroundImage ='url("styles/default/graphs/bloc_menu_sel.jpg")';
	//alert('toto');
}

function proceedAjoutContact(xhr)
{
	var retour = xhr.responseText;
	var resultat = retour.search(/erreur/);

	if(resultat != -1)
	{
		if(xhr.responseText=='erreur_mail')
			displayError('L\'adresse mail n\'est pas correcte.');
	}
	else
	{
		
		if(xhr.responseText=='ok')
			new Ajax.Request('index.php?controller=zoneprivee&action=genereListe', {method:'post',
				onFailure: function(xhr){errorAjax(xhr);},
				onSuccess: function(xhr){genereNewListe(xhr);}
			});
	}
}

function supprContact(idContact, idClient)
{
	new Ajax.Request('index.php?controller=zoneprivee&action=supprContact', {method:'post',
				postBody:'idcontact=' + idContact +
				'&idclient=' + idClient,
				onFailure: function(xhr){errorAjax(xhr);},
				onSuccess: function(xhr){proceedSupprContact(xhr);}
			});
}

function proceedSupprContact(xhr)
{

	var retour = xhr.responseText;
	var resultat = retour.search(/erreur/);

	if(resultat != -1)
	{
		if(xhr.responseText=='erreur_client')
			displayError('Vous n\'etes pas autorisé a supprimer ce contact');
	}
	else
	{
		if(xhr.responseText=='ok')
		{
			new Ajax.Request('index.php?controller=zoneprivee&action=genereListe', {method:'post',
				onFailure: function(xhr){errorAjax(xhr);},
				onSuccess: function(xhr){genereNewListe(xhr);}
			});
			closeBox();
		}
	}
	
}

function genereNewListe(xhr)
{
	document.getElementById('listeContact').innerHTML='<div id="contenuListeContact" style="position:absolute; top:0;"><table border="0" cellpadding="0" cellspacing="0" width="434"><tr class="headerTabHisto"><td align="center">Nom(s)</td><td align="center">Pr&eacute;nom(s)</td>	<td align="center">Soci&eacute;t&eacute;(s)</td><td align="center">Email(s)</td><td colspan="2">&nbsp;</td></tr>'+xhr.responseText+'</table></div>';
	videChampsContact();
	document.getElementById('linkAjouterContact').href='javascript: ajouteContact();';
}	

function modifContact(idContact, idClient)
{
	
	new Ajax.Request('index.php?controller=zoneprivee&action=modifContact', {method:'post',
				postBody:'idcontact=' + idContact +
				'&idclient=' + idClient,
				onFailure: function(xhr){errorAjax(xhr);},
				onSuccess: function(xhr){proceedModifContact(xhr);}
	});
}

function proceedModifContact(xhr)
{
	var retour = xhr.responseText;
	var resultat = retour.search(/erreur/);

	if(resultat != -1)
	{
		if(xhr.responseText=='erreur_client')
			displayError('Vous n\'etes pas autorisé a supprimer ce contact');
	}
	else
	{
		var res = xhr.responseText;
		var tab = res.split(',');
		var nom= tab[0];
		var prenom = tab[1];
		var societe = tab[2];
		var mail = tab[3];
		var idcontact= tab[4];
		var idclient= tab[5];
		
		document.getElementById('nomContact').value=nom;
		document.getElementById('prenomContact').value=prenom;
		document.getElementById('societeContact').value=societe;
		document.getElementById('emailContact').value=mail;
		
		document.getElementById('linkAjouterContact').href="javascript: modificationContact("+idcontact+","+idclient+");";
	
	}
}

function modificationContact(idContact, idClient)
{

	new Ajax.Request('index.php?controller=zoneprivee&action=verifModifContact', {method:'post',
	postBody:'nom=' + $('nomContact').value +
	'&prenom=' + $('prenomContact').value +
	'&societe=' + $('societeContact').value +
	'&email=' + $('emailContact').value +
	'&idclient=' + idClient +
	'&idcontact=' + idContact,
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){proceedModificationContact(xhr);}
	});
}

function proceedModificationContact(xhr)
{
	var retour = xhr.responseText;
	var resultat = retour.search(/erreur/);

	if(resultat != -1)
	{
		if(xhr.responseText=='erreur_mail')
			displayError('Le mot de passe n\'est pas correct');
	}
	else
	{
		
		if(xhr.responseText=='ok')
			new Ajax.Request('index.php?controller=zoneprivee&action=genereListe', {method:'post',
				onFailure: function(xhr){errorAjax(xhr);},
				onSuccess: function(xhr){genereNewListe(xhr);}
			});
	}
}

function videChampsContact()
{
	document.getElementById('nomContact').value="";
	document.getElementById('prenomContact').value="";
	document.getElementById('societeContact').value="";
	document.getElementById('emailContact').value="";
}

function afficheImportContact()
{
	var adresse = document.getElementById('emailImportContact').value;
	var domaine = document.getElementById('domaine').value;
	
	if(adresse.length==0)
		displayError('Veuillez saisir une adresse');
	else if(domaine==-1||domaine=="")
		displayError('Veuillez s&eacute;lectionnez un domaine');
	else
	{
		if(navigator.userAgent.indexOf("MSIE 6")!=-1)
			masqueSelect('domaineContact');
			
		popBox('view/popupImportContact.php?addr='+adresse+'&domaine='+domaine);
	}
}


function masqueSelect(id)
{
	document.getElementById(id).style.display='none';
}

function afficheSelect(id)
{
	document.getElementById(id).style.display='block';
}

function traitementImport()
{
	document.getElementById('popup_import_contact').style.cursor="wait";
	new Ajax.Request('index.php?controller=zoneprivee&action=traitementImportContact', {method:'post',
	postBody:'adresse=' + $('adresseImportContact').value +
	'&domaine=' + $('domaineImportContact').value +
	'&pass=' + $('passwordImportContact').value,
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){proceedTraitementImport(xhr);}
	});
}

function proceedTraitementImport(xhr)
{
	var retour = xhr.responseText;
	var resultat = retour.search(/erreur/);

	if(resultat != -1)
	{
		if(xhr.responseText=='erreur_identifiant')
			displayError('Les identifiants ne sont pas corrects');
		else if(xhr.responseText=='erreur_import')
			displayError('Erreur lors de l\'importation des contacts');
	}
	else
	{
		document.getElementById('popup_import_contact').style.cursor="default";
		afficheImportContactPostTraitement(xhr);
	}
}

function afficheImportContactPostTraitement(xhr)
{
	var div = document.getElementById('listeImportContactPopup');
	div.innerHTML="<table border='0' cellpadding='0' cellspacing='1' style='font-family: Arial, Helvetica, sans-serif;color: #444444;font-size: 11px;'>"+xhr.responseText+"</table>";
	
	var divParent=document.getElementById('popup_import_contact');
	var divLien = document.createElement('div');
	divLien.style.marginTop="30px";
	divLien.style.paddingLeft="20px";
	divLien.innerHTML="<a href='javascript: validImportContact();'><img src='styles/default/graphs/bouton_ajouter_contact_popup.gif' alt='' width='188' height='31' /></a>";
	divParent.appendChild(divLien);
}

function validImportContact()
{
	var email = document.getElementsByName('email[]');
	var selcontacts = document.getElementsByName('selcontacts[]');
	var i=0;
	var tabContact=new Array();
	var compteur=0;
	
	
	for(i=0;i<selcontacts.length;i++)
	{
		if(selcontacts[i].checked==true)
		{
			tabContact[compteur]=email[i].value;
			compteur++;		
		}
	}
	
	new Ajax.Request('index.php?controller=zoneprivee&action=existeContactImport', {method:'post',
	postBody:'contact=' + tabContact,
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){proceedValidImportContact(xhr);}
	});
}

function proceedValidImportContact(xhr)
{
	genereNewListe(xhr);
	closeBox();
}


function afficheFichier(ordre,valeur)
{

	new Ajax.Request('index.php?controller=zoneprivee&action=afficheListeFichier', {method:'post',
	postBody:'ordre=' + ordre +
	'&valeur=' + valeur,
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){proceedAfficheFichier(xhr, ordre);}
	});

}

function proceedAfficheFichier(xhr, ordre)
{	
	var link;
	var image;
	
	if(ordre=="ordre_decroissant")
	{
		link="javascript: afficheFichier('ordre_croissant');";
		image="styles/default/graphs/decroissant.gif";

				
	}
	else
	{
		link="javascript: afficheFichier('ordre_decroissant');";
		image="styles/default/graphs/croissant.gif";
	}
	
	document.getElementById('listeFichiers').innerHTML='<div id="contenuListeFichier" style="position:absolute; top:0;"><table border="0" cellpadding="0" cellspacing="0" width="680"><tr class="headerTabHisto"><td align="center" id="celluleFichier" style="height: 22px;" colspan="2">Fichier(s)</td><td align="center" style="height: 22px;"><a href="javascript: void(0);" class="lien_12_gras_blanc" onmouseover="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'show\');" onmouseout="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'hide\');">Cat&eacute;gorie(s)&nbsp;<img src="styles/default/graphs/croissant.gif" alt="" width="9" height="10" /></a></td><td align="center" style="height: 22px;">Destinataire(s)</td><td align="center" style="height: 22px;">Poid(s)</td><td align="center" style="height: 22px;">Date(s) d\'envoi<span id="imgDate"><a id="linkOrdreDate" href="'+link+'"><img id="imgTriDate" src="'+image+'" width="9" height="10" alt="" /></a></span></td><td align="center" style="height: 22px;">Expiration</td><td align="center" style="height: 22px;">T&eacute;l&eacute;chargé(s)</td><td align="center" style="height: 22px;">Protégé(s)</td><td align="center" style="height: 22px;">&nbsp;</td></tr>'+xhr.responseText+'</table></div><div id="listeCategoriesPrivate" style="visibility: hidden;" onmouseover="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'show\');" onmouseout="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'hide\');"></div>';
	afficheListeCategorie();
}

function afficheListeCategorie()
{
	var container = document.getElementById('listeFichiers');
	var div=document.getElementById('listeCategoriesPrivate');

	div.style.marginTop=(15-container.offsetHeight)+"px";
	new Ajax.Request('index.php?controller=zoneprivee&action=afficheListeCategorie', {method:'post',
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){proceedAfficheListeCategorie(xhr);}
	});

}

function proceedAfficheListeCategorie(xhr)
{
	var div=document.getElementById("listeCategoriesPrivate");
	var cellule = document.getElementById('celluleFichier');
	div.style.marginLeft= cellule.offsetWidth+5+"px";
	div.innerHTML=xhr.responseText;
}

function verifCategorie()
{
	var cat = document.getElementById('catFichierPopup');
	
	if(cat.lenght==0 || cat.value=="")
	{
		displayError('Veuillez saisir une categorie');
	}
	else
	{
		new Ajax.Request('index.php?controller=zoneprivee&action=verifCategorie', {method:'post',
		postBody:'categorie=' + cat.value,
		onFailure: function(xhr){errorAjax(xhr);},
		onSuccess: function(xhr){proceedVerifCategorie(xhr);}
		});
	}
}

function proceedVerifCategorie(xhr)
{
	var retour = xhr.responseText;
	var resultat = retour.search(/erreur/);

	if(resultat != -1)
	{
		if(xhr.responseText=='erreur_existant')
			displayError('Cat&eacute;gorie deja existante');
	}
	else
	{
		closeBox();
	}
}

function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(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 supprFichier(idFichier, idClient)
{
	new Ajax.Request('index.php?controller=zoneprivee&action=supprFichier', {method:'post',
				postBody:'idfichier=' + idFichier +
				'&idclient=' + idClient,
				onFailure: function(xhr){errorAjax(xhr);},
				onSuccess: function(xhr){proceedSupprFichier(xhr);}
			});
}

function proceedSupprFichier(xhr)
{

	var retour = xhr.responseText;
	var resultat = retour.search(/erreur/);

	if(resultat != -1)
	{
		if(xhr.responseText=='erreur_client')
			displayError('Vous n\'etes pas autorisé a supprimer ce fichier');
	}
	else
	{
		if(xhr.responseText=='ok')
		{
			new Ajax.Request('index.php?controller=zoneprivee&action=afficheListeFichier', {method:'post',
				postBody:'ordre=ordre_croissant',
				onFailure: function(xhr){errorAjax(xhr);},
				onSuccess: function(xhr){genereListeFichier(xhr);}
			});
			closeBox();
		}
	}
}

function genereListeFichier(xhr)
{
	//document.getElementById('listeFichiers').innerHTML='<div id="contenuListeFichier" style="position:absolute; top:0;"><table border="0" cellpadding="0" cellspacing="0" width="680"><tr class="headerTabHisto"><td align="center" colspan="2">Fichier(s)</td><td align="center"><a href="javascript: void(0);" class="lien_12_gras_blanc" onmouseover="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'show\');" onmouseout="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'hide\');">Cat&eacute;gorie(s)&nbsp;<img src="styles/default/graphs/croissant.gif" alt="" width="9" height="10" /></a></td><td align="center">Destinataire(s)</td><td align="center">Poid(s)</td><td align="center">Date(s) d\'envoi<span id="imgDate"><a id="linkOrdreDate" href="javascript: afficheFichier(\'ordre_decroissant\');"><img id="imgTriDate" src="styles/default/graphs/croissant.gif" width="9" height="10" alt="" /></a></span></td><td align="center">T&eacute;l&eacute;chargé(s)</td><td align="center">Protégé(s)</td><td>&nbsp;</td></tr>'+xhr.responseText+'</table></div><div id="listeCategoriesPrivate" style="visibility: hidden;" onmouseover="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'show\');" onmouseout="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'hide\');"></div>';
	document.getElementById('listeFichiers').innerHTML='<div id="contenuListeFichier" style="position:absolute; top:0;"><table border="0" cellpadding="0" cellspacing="0" width="680"><tr class="headerTabHisto"><td align="center" id="celluleFichier" style="height: 22px;" colspan="2"><a href="javascript:;" class="lien_12_gras_blanc" onclick="trieListeFichier(\'nom\',\'DESC\');">Fichier(s)</a></td><td align="center" style="height: 22px;"><a href="javascript: void(0);" class="lien_12_gras_blanc" onmouseover="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'show\');" onmouseout="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'hide\');">Cat&eacute;gorie(s)&nbsp;<img src="styles/default/graphs/croissant.gif" alt="" width="9" height="10" /></a></td><td align="center" style="height: 22px;"><a href="javascript:;" class="lien_12_gras_blanc" onclick="trieListeFichier(\'destinataire\',\'ASC\');">Destinataire(s)</a></td><td align="center" style="height: 22px;"><a href="javascript:;" class="lien_12_gras_blanc" onclick="trieListeFichier(\'poids\',\'ASC\');">Poid(s)</a></td><td align="center" style="height: 22px;">Date(s) d\'envoi<span id="imgDate"><a id="linkOrdreDate" href="javascript: afficheFichier(\'ordre_decroissant\');"><img id="imgTriDate" src="styles/default/graphs/croissant.gif" width="9" height="10" alt="" /></a></span></td><td align="center" style="height: 22px;"><a href="javascript:;" class="lien_12_gras_blanc" onclick="trieListeFichier(\'expiration\',\'ASC\');">Expiration</a></td><td align="center" style="height: 22px;"><a href="javascript:;" class="lien_12_gras_blanc" onclick="trieListeFichier(\'download\',\'ASC\');">T&eacute;l&eacute;charg&eacute;(s)</a></td><td align="center" style="height: 22px;">Prot&eacute;g&eacute;(s)</td><td>&nbsp;</td></tr>'+xhr.responseText+'</table></div><div id="listeCategoriesPrivate" style="visibility: hidden;" onmouseover="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'show\');" onmouseout="MM_showHideLayers(\'listeCategoriesPrivate\',\'\',\'hide\');"></div>';
	afficheListeCategorie();
}

function saisiSemiAutomatique(elem,obj)
{
	var valeur = elem.value;
	//alert(elem.value);
	new Ajax.Request('index.php?controller=zoneprivee&action=saisiSemiAuto', {method:'post',
	postBody:'recherche=' + valeur,
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){proceedSaisiSemiAutomatique(xhr, obj);}
	});
}

function proceedSaisiSemiAutomatique(xhr, elem)
{
	var div = document.createElement('div');
	div.id="divSemiAuto";
	div.innerHTML="";
	div.innerHTML=xhr.responseText;
	div.className="saisiSemiAuto";
	//catSaisi
	elem.appendChild(div);
}


function affichePopupRenvoi(nom)
{
	popBox("view/popup_renvoi.php?id="+nom);
}


function traitementRenvoi()
{
	var id = document.getElementById('idFichierRenvoi').value;
	var sujet = document.getElementById('sujetRenvoi').value;
	var message = document.getElementById('messageRenvoi').value;
	var destinataires = recupDestRenvoi();
	
	
	new Ajax.Request('index.php?controller=zoneprivee&action=traitementRenvoi', {method:'post',
	postBody:'idfic=' + id +
	'&sujet=' + sujet +
	'&message=' + message +
	'&destinataires=' + destinataires,
	onFailure: function(xhr){errorAjax(xhr);},
	onSuccess: function(xhr){proceedtraitementRenvoi(xhr);}
	});
}

function recupDestRenvoi()
{
	var divPrinc = document.getElementById('inputDestRenvoi');
	var listeDestinataire = "";

	if(divPrinc.hasChildNodes())
	{
		var enfants = divPrinc.childNodes;
		var compteurElement = 1;

		for (var i = 0; i < enfants.length; i++)
		{
			if(enfants[i].tagName=='DIV')
			{
				var enfants2 = enfants[i].childNodes;
				
				for (var j = 0; j < enfants2.length; j++)
				{
					if(enfants2[j].tagName=='INPUT')
					{			
						if(enfants2[j].value!="")
							listeDestinataire = listeDestinataire + enfants2[j].value+ ",";
					}
				}
			}
		}
	}
	
	return listeDestinataire;		
}

function proceedtraitementRenvoi(xhr)
{
	var retour = xhr.responseText;
	var resultat = retour.search(/erreur/);

	if(resultat != -1)
	{
		if(xhr.responseText=='erreur_destinataire')
			displayError('L\'une des adresses mails de destination n\'est pas correcte.');
	}
	else
	{
		closeBox();
		displayError('Votre fichier a bien &eacute;t&eacute; renvoy&eacute;');
	}
}

function afficheHisto(ordre)
{
	new Ajax.Request('index.php?controller=zoneprivee&action=afficheListeHisto', {method:'post',
	postBody:'ordre=' + ordre,
	onFai