//Side Menu for About Us
var PageColor = "#65c3ca";
var PageName = "About Us";

function ShowVideo() {
	imageWidth = 530; imageHeight = 320;
  var windowWidth = imageWidth + 70, windowHeight = imageHeight + 135;
	var HREF = "WKYC/WKYC.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)
}
function ShowLetter() {
	imageWidth = 530; imageHeight = 360;
  var windowWidth = imageWidth + 70, windowHeight = imageHeight + 135;
	var HREF = "Letter.htm"
	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)
}
function ShowFlash(Item) {
	imageWidth = 530; imageHeight = 320;
  var windowWidth = imageWidth + 70, windowHeight = imageHeight + 135;
	if (Item == 2) { HREF = "Camp Quality/Camp Quality.html" }
	else { HREF = "NILMDTS/NowILayMe.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)
}
