var Recipe_ScrollY;
var Container_Recipe;
function Recipe( RecipeID ){

	var Show;
	RecipeID
		? Show = true
		: Show = false;

	var Container_MainContent = document.getElementById( 'MainContent' );
	var Container_Back = document.getElementById( 'Recipe_Back' );
	if( Show ){
		Container_Recipe = document.getElementById( 'Recipe_'+RecipeID );
	}

	// Scroll Position
	ScrollPos();
	var ScrollTo;
	Show
		? Recipe_ScrollY = ScrollY
		: null;
	Show
		? ScrollTo = 0
		: ScrollTo = Recipe_ScrollY;

	// Container_MainContent
	Show
		? Container_MainContent.style.display = "none"
		: Container_MainContent.style.display = "block";

	// Container_Recipe
	Show
		? Container_Recipe.style.display = Container_Back.style.display = "block"
		: Container_Recipe.style.display = Container_Back.style.display = "none";
	
	// Scroll Position (update)
	document.body.scrollTop = ScrollTo;

	return;
}


