// JavaScript Document

function close_window() { //v1.0
    window.close();
}


function custom_print() { // version nettement simplifiee
	window.print();
}

function goHist(a) //v1.0
{
   history.go(a);     
}

function voir(id_layer) {
	status = document.getElementById('display').checked;
	
	var item = null;
	if (document.getElementById) {
		item = document.getElementById(id_layer);
	} else if (document.all){
		item = document.all[id_layer];
	} else if (document.layers){
		item = document.layers[id_layer];
	}
	
	if(status == true) {
		item.style.display = "";
	} else {
		item.style.display = "none";
	}
}

function modLivraison(id_layer,mode) {
	
	var item = null;
	if (document.getElementById) {
		item = document.getElementById(id_layer);
	} else if (document.all){
		item = document.all[id_layer];
	} else if (document.layers){
		item = document.layers[id_layer];
	}
	
	if(mode == 'on') {
		item.style.display = "";
	} else {
		item.style.display = "none";
	}
}


pause_time = 3000; // 1000
transfer_location = "/fr/vip/"
function redirection() {
	 setTimeout('window.location.href = transfer_location;',pause_time);
}


