// JavaScript Document

//Aperçu
function apercu (nom_img) {
	var debut_url = "images/miniatures/"
	document.img_apercu.src = debut_url+nom_img;
}
function img_defaut() {
	document.img_apercu.src = "images/tele/rien.gif";
}
function popUp(url, l, h) {
	window.open(url,'thomas_cook_details','height='+h+',width='+l+',toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
}



//Télécommande
var telec = true;
function displayTelec () {
	if (telec == true) {
		document.getElementById ('menu').style.marginBottom = "0px";
		telec = false;
	} else {
		document.getElementById ('menu').style.marginBottom = "-250px";
		telec = true;
	};
}


//Power
var power = true;
function powerTele () {
	if (power == true) {
		//document.getElementById('boite_contenu').style.display = "none";
		$("#boite_contenu").fadeOut("slow");
		document.getElementById("special2").style.background ="url(images/tele/btn_lum_rouge.gif) repeat left top";
		power = false;
	} else {
		//document.getElementById('boite_contenu').style.display = "block";
		$("#boite_contenu").fadeIn("slow");
		document.getElementById("special2").style.background ="url('images/tele/btn_lum_vert.gif') repeat left top";
		power = true;
	}
}
