//Side Menu for Products
var PageColor = "#efbe9d";
var PageName = "Products";

function ShowFlash(Item) {
  var windowWidth = 890, windowHeight = 580;
	HREF = Item + "/index.html"
	var left = (window.screen.width - (windowWidth + 10))/2;   // plus two 5-pixel borders
	var top = (window.screen.height - (windowHeight + 50))/2;  // plus title and status bars
	window.open(HREF, "",     "left="+left+",top="+top+",    width="+windowWidth+",height="+windowHeight);
	return false;
}
