
/* Scripts et variables Generiques - TravelPlus */


// Detection des navigateurs
nc4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;
nc6 = (typeof(window.controllers) != 'undefined' && typeof(window.locationbar) != 'undefined')? true:false;

// Initialisation de la langue
var langue = "";

// Initialisation de l'espace (Prospect : p / Client : c)
var espace = "";


// Ouverture de popups...
// ----------------------


// Popup a taille variable AVEC ascenceur
function pop_va(URL,larg,haut) {
	window.open(URL,'','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=yes,status=no,width=' + larg + ',height=' + haut);
}

// Popup a taille variable SANS ascenceur
function pop_v(URL,larg,haut) {
	window.open(URL,'','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=no,status=no,width=' + larg + ',height=' + haut);
	}
	
// used in the paging of the search res
function submiter(devalue)
 {
  document.recherche.page.value = devalue;
  document.recherche.submit();
 }
