/* javascript document */

var TAILLEPX = 11;

function showCGU(action) {

	if (action == "on") {

		new Effect.Fade('content_popine', { afterFinish:function(){  new Effect.Appear('content_cgu');} });
		//new Effect.MoveBy('content_popine', -200, 0, {duration:3, fps:25, from:0.0, to:1.0});

		
		
	} else if (action == "off") {
		
		new Effect.Fade('content_cgu', { afterFinish:function(){  new Effect.Appear('content_popine');} });
	
	}
	
	
}


function zoomArticle (img)  {
	
	var zoom = $(img).id;
	
	if (zoom == 'loupePlus') {
		
		if (TAILLEPX <= 13) {
			TAILLEPX++;
		}
	
	} else {
		
		if (TAILLEPX > 11) {
			TAILLEPX--;
		}
	}
	
	$('article').style.fontSize = TAILLEPX+"px";

	
}


function verifIdentification(rub, session) {

	
		if (rub != 3  && session == "block") {
			window.location.replace("./index.php");
		}
		
		// bye bye erational - glory to uzik  :<
		
}