function VMenuOver(obj)
	{
		document.getElementById(obj).style.margin="13px 8px 0 24px";
	}
	
 	function VMenuOut(obj)
	{
		document.getElementById(obj).style.margin="13px 17px 0 15px";
	}
 
// ROLL OVER ACCUEIL BUTTON
function checkIn()
{
document.getElementById('Logo').style.backgroundImage="url(images/logo_ov.gif)";
document.getElementById('Logo').style.cursor="pointer";
}

function checkOut()
{
document.getElementById('Logo').style.backgroundImage="url(images/logo.gif)";
}



// ********** COMMON JS FUNCTIONS  ********


function f_open_window_max( aURL, aWinName )
{
   var wOpen;
   var sOptions;

   sOptions = 'status=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no';
   sOptions = sOptions + ',width=' + (screen.availWidth - 10).toString();
   sOptions = sOptions + ',height=' + (screen.availHeight - 122).toString();
   sOptions = sOptions + ',screenX=0,screenY=0,left=0,top=0';

   wOpen = window.open( '', aWinName, sOptions );
   wOpen.location = aURL;
   wOpen.focus();
   wOpen.resizeTo( screen.availWidth/1.2, screen.availHeight/1.2 );
}

