/* cookie source javascript netscape dev center & loz from provisoire.com */
// Sets cookie values. Expiration date is optional
//
function setCookie(name, value, path, expire) {   
	document.cookie = name + "=" + escape(value)
	+ ((path == null) ? "" : ("; path=" + path))   
	+ ((expire == null) ? "" : ("; expires=" + expire.toGMTString()))
}

function getCookie(Name) {   
	var search = Name + "="   
	if (document.cookie.length > 0) { 
		// if there are any cookies      
		offset = document.cookie.indexOf(search)       
		if (offset != -1) { // if cookie exists          
			offset += search.length          
			// set index of beginning of value         
			end = document.cookie.indexOf(";", offset)          
			// set index of end of cookie value         
			if (end == -1)             
			end = document.cookie.length         
			return unescape(document.cookie.substring(offset, end))      
		}    
	}
}

// enregistrement des nouvelles valeurs du parcours
function parcours_rec(name,valeurs) {   
	var today = new Date()   
	var expires = new Date()  
	var path = "/" 
	expires.setTime(today.getTime() + 1000*60*60*24*365)   // validité 1 an
	setCookie(name, valeurs, path) //, expires)
}

// pour eviter les redondances
function not_in_array(MyVal,MyArray)
{
	result = true
		for (var i in MyArray) 
		{ 
		if (MyVal == MyArray[i]) {
			result = false;
			break;
			}
		}
	return result;
}

// affichage des icones et ajout des nouveaux hits
function affiche_ajoute_visite(val) {
	// lecture des cookies
	var visites = getCookie("contenus");
	// marge gauche par defaut
	var gauche = 30;
	var lien_absolu = "http://www.criticalsecret.com/n7/rebus_poupee/";
	
	// ouvre les images
	document.write('<div id="Layer100" style="position:absolute; width:30px; height:40px; z-index:100; left: 0px; top: 0">')
	document.write('<img src="'+lien_absolu+'poupees/ouvre.jpg" width="30" height="40"></div>');

	if (visites != null) // test cookie
		{
		// convertir les valeurs des cookies en tableau
		var visit_array = new Array();
		visit_array = visites.split(",");
		
		// ajout 
      if ( not_in_array(val,visit_array) )
			{ 
				// visit_array.push(val); // mie 5.5 ne
				var valPush = new Array(val);
				var NewArray = new Array();
				NewArray = visit_array.concat(valPush);
				visit_array = NewArray; // mise à jour du tableau
		   	parcours_rec("contenus",NewArray); // enregistrement
		   }
		   
		
		for (var i in visit_array) 
			{ 
				// faire qqchose avec les valeurs
				var doc = new Array();
				doc = visit_array[i].split("|");
				var n_poupee = doc[0];
				var lg_poupee = doc[1];
				document.write("<div id='Layer"+n_poupee
				+"' style='position:absolute; width:"+lg_poupee+"; height:40; z-index:"+n_poupee
				+"; left: "+gauche+"px; top: 0px'>");
				document.write("<img src='"+lien_absolu+"poupees/"+n_poupee+".jpg' width='"+lg_poupee+"' height='40' ");
				document.write("onMouseDown=\"MM_dragLayer('Layer"+n_poupee+"','',0,0,0,0,true,false,0,0,-1,-1,0,0,10,'showWinNew("+n_poupee+")',false,'')\">");
				document.write("</div>");
				gauche += parseInt(lg_poupee);
				//alert('-'+n_poupee+'-'+lg_poupee+'-'+gauche+'-boucle');
			}
		
		} else {
			parcours_rec("contenus",val); // donner un valeur au cookie
			// faire qqchose avec la valeur
			var doc = new Array();
			doc = val.split("|");
			var n_poupee = doc[0];
			var lg_poupee = doc[1];
			document.write("<div id='Layer"+n_poupee
			+"' style='position:absolute; width:"+lg_poupee+"; height:40; z-index:"+n_poupee
			+"; left: "+gauche+"px; top: 0px'>");
			document.write("<img src='"+lien_absolu+"poupees/"+n_poupee+".jpg' width='"+lg_poupee+"' height='40' ");
			document.write("onMouseDown=\"MM_dragLayer('Layer"+n_poupee+"','',0,0,0,0,true,false,0,0,-1,-1,0,0,10,'showWinNew("+n_poupee+")',false,'')\">");
			document.write("</div>");
			gauche += parseInt(lg_poupee);
		}
/*var ici = new Array();
ici = val.split("|");		
document.write("<h3>ici contenu "+ici[0]+"</h3>");*/
}


// fonction pour faire le menu temporaire
function affiche_pages() {
	for (i=1;i<15;i++) {
		document.write('<a href="'+i+'.htm">vers contenu '+i+'</a><br>');
		}
}

// fonction dedie pour ouverture des fenetre
function showWinNew (url) {
	// définir les valeurs de votre fenêtre
		var WinNewProperties = "null"; // ne sert à rien
		WinNewProperties += ",toolbar=no";
		WinNewProperties += ",location=no";
		WinNewProperties += ",directories=no";
		WinNewProperties += ",status=no";
		WinNewProperties += ",menubar=no";
		//WinNewProperties += ",titlebar=no";
		//WinNewProperties += ",chrome";
		//WinNewProperties += ",fullscreen=1";
		WinNewProperties += ",width=1"; 
		WinNewProperties += ",height=1"; 
		WinNewProperties += ",scrollbars=no";
		WinNewProperties += ",resizable=no";
		
	// PopNew = ""; // créer une variable vide si problème
	if (url < 10) url = "0"+url;
	url = "http://www.criticalsecret.com/n7/rebus_poupee/poupees_big/open.php?img=" + url;
	PopNew = window.open (url,"PopNew",WinNewProperties);
}


// fonctions dreamweaver

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_dragLayer(objName,x,hL,hT,hW,hH,toFront,dropBack,cU,cD,cL,cR,targL,targT,tol,dropJS,et,dragJS) { //v3.0
  //Copyright 1998 Macromedia, Inc. All rights reserved.
  var i,j,aLayer,retVal,curDrag=null,NS=(navigator.appName=='Netscape'), curLeft, curTop;
  if (!document.all && !document.layers) return false;
  retVal = true; if(!NS && event) event.returnValue = true;
  if (MM_dragLayer.arguments.length > 1) {
    curDrag = MM_findObj(objName); if (!curDrag) return false;
    if (!document.allLayers) { document.allLayers = new Array();
      with (document) if (NS) { for (i=0; i<layers.length; i++) allLayers[i]=layers[i];
        for (i=0; i<allLayers.length; i++) if (allLayers[i].document && allLayers[i].document.layers)
          with (allLayers[i].document) for (j=0; j<layers.length; j++) allLayers[allLayers.length]=layers[j];
      } else for (i=0;i<all.length;i++) if (all[i].style&&all[i].style.position) allLayers[allLayers.length]=all[i];}
    curDrag.MM_dragOk=true; curDrag.MM_targL=targL; curDrag.MM_targT=targT;
    curDrag.MM_tol=Math.pow(tol,2); curDrag.MM_hLeft=hL; curDrag.MM_hTop=hT;
    curDrag.MM_hWidth=hW; curDrag.MM_hHeight=hH; curDrag.MM_toFront=toFront;
    curDrag.MM_dropBack=dropBack; curDrag.MM_dropJS=dropJS;
    curDrag.MM_everyTime=et; curDrag.MM_dragJS=dragJS;
    curDrag.MM_oldZ = (NS)?curDrag.zIndex:curDrag.style.zIndex;
    curLeft= (NS)?curDrag.left:curDrag.style.pixelLeft; curDrag.MM_startL = curLeft;
    curTop = (NS)?curDrag.top:curDrag.style.pixelTop; curDrag.MM_startT = curTop;
    curDrag.MM_bL=(cL<0)?null:curLeft-cL; curDrag.MM_bT=(cU<0)?null:curTop -cU;
    curDrag.MM_bR=(cR<0)?null:curLeft+cR; curDrag.MM_bB=(cD<0)?null:curTop +cD;
    curDrag.MM_LEFTRIGHT=0; curDrag.MM_UPDOWN=0; curDrag.MM_SNAPPED=false; //use in your JS!
    document.onmousedown = MM_dragLayer; document.onmouseup = MM_dragLayer;
    if (NS) document.captureEvents(Event.MOUSEDOWN|Event.MOUSEUP);
  } else {
    var theEvent = ((NS)?objName.type:event.type);
    if (theEvent == 'mousedown') {
      var mouseX = (NS)?objName.pageX : event.clientX + document.body.scrollLeft;
      var mouseY = (NS)?objName.pageY : event.clientY + document.body.scrollTop;
      var maxDragZ=null; document.MM_maxZ = 0;
      for (i=0; i<document.allLayers.length; i++) { aLayer = document.allLayers[i];
        var aLayerZ = (NS)?aLayer.zIndex:aLayer.style.zIndex;
        if (aLayerZ > document.MM_maxZ) document.MM_maxZ = aLayerZ;
        var isVisible = (((NS)?aLayer.visibility:aLayer.style.visibility).indexOf('hid') == -1);
        if (aLayer.MM_dragOk != null && isVisible) with (aLayer) {
          var parentL=0; var parentT=0;
          if (!NS) { parentLayer = aLayer.parentElement;
            while (parentLayer != null && parentLayer.style.position) {
              parentL += parentLayer.offsetLeft; parentT += parentLayer.offsetTop;
              parentLayer = parentLayer.parentElement; } }
          var tmpX=mouseX-(((NS)?pageX:style.pixelLeft+parentL)+MM_hLeft);
          var tmpY=mouseY-(((NS)?pageY:style.pixelTop +parentT)+MM_hTop);
          var tmpW = MM_hWidth;  if (tmpW <= 0) tmpW += ((NS)?clip.width :offsetWidth);
          var tmpH = MM_hHeight; if (tmpH <= 0) tmpH += ((NS)?clip.height:offsetHeight);
          if ((0 <= tmpX && tmpX < tmpW && 0 <= tmpY && tmpY < tmpH) && (maxDragZ == null
              || maxDragZ <= aLayerZ)) { curDrag = aLayer; maxDragZ = aLayerZ; } } }
      if (curDrag) {
        document.onmousemove = MM_dragLayer; if (NS) document.captureEvents(Event.MOUSEMOVE);
        curLeft = (NS)?curDrag.left:curDrag.style.pixelLeft;
        curTop = (NS)?curDrag.top:curDrag.style.pixelTop;
        MM_oldX = mouseX - curLeft; MM_oldY = mouseY - curTop;
        document.MM_curDrag = curDrag;  curDrag.MM_SNAPPED=false;
        if(curDrag.MM_toFront) {
          eval('curDrag.'+((NS)?'':'style.')+'zIndex=document.MM_maxZ+1');
          if (!curDrag.MM_dropBack) document.MM_maxZ++; }
        retVal = false; if(!NS) event.returnValue = false;
    } } else if (theEvent == 'mousemove') {
      if (document.MM_curDrag) with (document.MM_curDrag) {
        var mouseX = (NS)?objName.pageX : event.clientX + document.body.scrollLeft;
        var mouseY = (NS)?objName.pageY : event.clientY + document.body.scrollTop;
        newLeft = mouseX-MM_oldX; newTop  = mouseY-MM_oldY;
        if (MM_bL!=null) newLeft = Math.max(newLeft,MM_bL);
        if (MM_bR!=null) newLeft = Math.min(newLeft,MM_bR);
        if (MM_bT!=null) newTop  = Math.max(newTop ,MM_bT);
        if (MM_bB!=null) newTop  = Math.min(newTop ,MM_bB);
        MM_LEFTRIGHT = newLeft-MM_startL; MM_UPDOWN = newTop-MM_startT;
        if (NS) {left = newLeft; top = newTop;}
        else {style.pixelLeft = newLeft; style.pixelTop = newTop;}
        if (MM_dragJS) eval(MM_dragJS);
        retVal = false; if(!NS) event.returnValue = false;
    } } else if (theEvent == 'mouseup') {
      document.onmousemove = null;
      if (NS) document.releaseEvents(Event.MOUSEMOVE);
      if (NS) document.captureEvents(Event.MOUSEDOWN); //for mac NS
      if (document.MM_curDrag) with (document.MM_curDrag) {
        if (typeof MM_targL =='number' && typeof MM_targT == 'number' &&
            (Math.pow(MM_targL-((NS)?left:style.pixelLeft),2)+
             Math.pow(MM_targT-((NS)?top:style.pixelTop),2))<=MM_tol) {
          if (NS) {left = MM_targL; top = MM_targT;}
          else {style.pixelLeft = MM_targL; style.pixelTop = MM_targT;}
          MM_SNAPPED = true; MM_LEFTRIGHT = MM_startL-MM_targL; MM_UPDOWN = MM_startT-MM_targT; }
        if (MM_everyTime || MM_SNAPPED) eval(MM_dropJS);
        if(MM_dropBack) {if (NS) zIndex = MM_oldZ; else style.zIndex = MM_oldZ;}
        retVal = false; if(!NS) event.returnValue = false; }
      document.MM_curDrag = null;
    }
    if (NS) document.routeEvent(objName);
  } return retVal;
}
