﻿function showIt(imageName,where)
{
	display = document.getElementById("showit");
	if (window.innerWidth)
	{
		docWidth = window.innerWidth;
	}
	if (document.body.clientWidth)
	{
		docWidth = document.body.clientWidth;
	}
	docWidth = docWidth / 3;
	//alert("Width = " + docWidth);
	imageToShow = document.getElementById("Image");
	imageToShow.src = imageName;
	imageToShow.style.width = docWidth + "px";
	display.style.visibility = "visible";
	if (where == "left")
	{
		display.style.left = "0%";
		display.style.right="";
	}
	else
	{
		display.style.right = "0%";
		display.style.left="";
	}
}

function hideIt()
{
	display = document.getElementById("showit");
	display.style.visibility = "hidden";
}
