/*Cotaion sur mesure */
var infoWindowvoyage ;
function Showvoyage(srcFile) {
if (infoWindowvoyage && infoWindowvoyage.open && !infoWindowvoyage.closed)
infoWindowvoyage.location=srcFile;
else
infoWindowvoyage=window.open(srcFile,"Cotation_sur_mesure","scrollbars=yes,resizable=yes,toolbar=no,width=660,height=560,left=200,top=60") ;
infoWindowvoyage.focus() ;
}

/*Diaporama */
var DiapoWindow ;
var DiapoOpen = false ;
function ShowDiapo(srcFile) {
if (DiapoWindow && DiapoWindow.open && !DiapoWindow.closed)
DiapoWindow.location=srcFile;
else
DiapoWindow=window.open(srcFile,"photos","scrollbars=yes,resizable=no,width=600,height=400,left=300,top=100") ;
DiapoWindow.focus() ;
}

/*Select un voyage */
function takemethere(mois,codec,nom)  {
if (document.formrub.rub.options[document.formrub.rub.selectedIndex].value != 0)
	self.location = '/'+mois+'/'+codec+'/'+nom+'.htm' +
	'#' + document.formrub.rub.options[document.formrub.rub.selectedIndex].value;
}
