// JavaScript Document
var pas=5;
var pos= 0;
var vit = 1;
var pause = 0;
var tem;

function move(sens){
	var obj = document.getElementById("Layer2");
	if(sens == 'd'){
		pos -= pas;
	} else {
		pos += pas;
	}
	
	
	if(pos < ((-nb_page * 130) + 489)) pos = pos + pas;
	if(pos >= 0)  pos = 0; 
	obj.style.left = pos + 'px';
	//document.getElementById("test").innerText=pos;
	tem = setTimeout("move('" + sens + "')", vit);
}

function defil(sens){
	clearTimeout(tem);
	tem = setTimeout("move('" + sens + "')", pause);
}

function stop_defil(){
	clearTimeout(tem);
}

function open_pop(path){
	var url = 'view_photo.php?path=' + path;
	window.open(url, 'zoom', 'toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width=600, height=450');
}

function open_reference(id_produit){
	var url = 'view_ref.php?id_produit=' + id_produit;
	window.open(url, 'ref', 'toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=410, height=450');
}

function open_tableau(id_produit){
	var url = 'view_tableau.php?id_produit=' + id_produit;
	window.open(url, 'ref', 'toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0, width=500, height=300');
}
function open_infos(id_produit){
	var url = 'demande_infos_produit2.php?id_produit=' + id_produit;
	window.open(url, 'ref', 'toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0, width=650, height=450');
}
