
function changesearcharea(sense)
	{
	if(sense=='grand'){
		document.getElementById('volet_result_search').style.height='266px';
	}

	if(sense=='petit'){
		document.getElementById('volet_result_search').style.height='50px';
	}

}

function displayselection(){
		document.getElementById('bouton_selection').style.display='block';
}

function display_page_courante(){
		document.getElementById('page_courantes').style.display='block';
}



function favoris(txta,txtb) {
if ( navigator.appName != 'Microsoft Internet Explorer' )
{ window.sidebar.addPanel(txtb,txta,""); }
else { window.external.AddFavorite(txta,txtb); } }

function popUp(strURL,strType,strHeight,strWidth) {
closeWin();
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="forum") strOptions="resizable,scrollbars,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
}