function photo(id) {
	newWindow=window.open('diaporama.php?id='+id,'Jorane',"toolbar=no,status=no,menubar=no,resizable=no,scrollbars=no, width=700,height=700");
	newWindow.focus();
}

function sample(id) {
	var winl = (screen.width - 408) / 2;
	var wint = (screen.height - 168) / 2;
	window.open('http://www.boutiquetacca.com/mp3/player.php?id='+id, 'sample','width=408,height=168,top='+wint+',left='+winl+',scrollbars=no,resizable')
}

function addtrackstocart(strLang) {
	boolChecked = false;
	for (var i = 0; i < document.downloadtracks.elements.length; i++) {
		if (document.downloadtracks.elements[i].name == "arrTracks[]") {
			if (document.downloadtracks.elements[i].checked == true) {
				boolChecked = true;
			}
		}
	}
	if (boolChecked) {
		document.downloadtracks.submit();
	} else {
		switch(strLang) {
			case 'FR':
				alert('Aucune pièce n\'a été sélectionnée!');
				break;
			case 'EN':
				alert('No tracks selected!');
				break;
		}
	}
}
