document.write('<script type="text/javascript" src="../javascripts/prototype.js"><\/script>');
document.write('<script type="text/javascript" src="../javascripts/scriptaculous.js"><\/script>');

// Pour afficher le contenu entre <!--


function displayedShow(elementId) {
	setTimeout('displayedShowWaited()',1000);
}

function displayedShowWaited() {
	/*$('displayed').show();	*/
	/*$('displayed').appear({duration : 0.3});*/
	$('displayed').show();
}

function displayedHide(elementId) {
	/*$('displayed').hide();*/
	$('displayed').hide();
}


function centerPopUp( url, name ) { 
	aw = screen.availWidth - 100;
	ah = screen.availHeight - 100;
	
	//aw = 980;
	//ah = 580;
 
	str  = ""; 
	str += "resizable=1,"; 
	str += "scrollbars=no"+","; 
	str += "width=" + aw + ","; 
	str += "height=" + ah + ","; 
	str += "left=50"+","; 
	str += "top=50";  
	
	window.open( url, name, str ); 
}

