function productZoom(count, imgId) {
	var id = imgId.substring(4,5);
	for (var i=1; i<=count; i++) {
		document.getElementById("products-zoom-" + i).style.display = 'none';
	}	
	document.getElementById("products-zoom-" + id).style.display = 'inline';
}

/*
function openPopup(link) {
        window.open(link, 'Assistant_taille', config='height=500, width=595, top=center, left=center, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
}
*/

var win=null;
function openPopup(mypage,myname,w,h,scroll,pos){
	if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
	if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
	else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	window.open(mypage,myname,settings);
}
