/*
Auteur : virginie
Date : 19/02/2003 à 11h30
Version : 2.0
*/


//Taille popup
var H_popup = 595;
var L_popup = 500;


//Déplacement vers le haut les prix des hotels
var T_popup = 50;



// pop-up prix
function popup( url, target ,L ,H ,T ){
	v2 = window.open( url, 'popup' , ' Width='+L + ',Height='+ H + ', Top='+ T + ',screenX=0,screenY=0,resizable=0,menubar=0,toolbar=0,location=0,status=1,Scrollbars=1');
	v3 = v2.focus();
}

// ascenceur
couleurligne = "#FFFFFF";
couleurbase = "#CCB3B3";
couleurover = "#996666";
function scrollBar(face)
	{
	with(document.body.style)
		{
		scrollbarDarkShadowColor=couleurligne;
		scrollbar3dLightColor=couleurligne;
		scrollbarArrowColor=couleurligne;
		scrollbarBaseColor=face;
		scrollbarFaceColor=face;
		scrollbarHighlightColor=face;
		scrollbarShadowColor=face;
		scrollbarTrackColor="#F3F3F3";
		}
	}
function colorBar(){
		var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x>w) scrollBar(couleurover);
		else scrollBar(couleurbase);
	}
if (document.all){
scrollBar(couleurbase);
document.onmousemove=colorBar;
}


//Taille reserve
var H_reserve = 450;
var L_reserve = 640;


// reserve
function reserve( url, target ,L , H){
	v2 = window.open( url, 'reserve', ' Width='+L + ',Height='+H + ',screenX=0,screenY=0,resizable=0,menubar=0,toolbar=0,location=0,status=1,Scrollbars=1');
	v3 = v2.focus();
}





