function Open_Popup(page,width,height)
{
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	window.open(page, 'popup', config='top='+top+', left='+left+', height='+height+', width='+width+', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
}


function viewMenu(selected, current) {
	document.getElementById('menu_accueil').style.display = 'none';
	document.getElementById('menu_histoires').style.display = 'none';
	document.getElementById('menu_images').style.display = 'none';
	document.getElementById('menu_pps').style.display = 'none';
	document.getElementById('menu_videos').style.display = 'none';

	document.getElementById('menu_' + selected).style.display = 'block';
}

function closePopupAndRefresh(){
     popup.close();
     self.location.reload();
}