﻿function showPopup()
{
	document.getElementById("contentSilverLight").style.visibility = "hidden";
	document.getElementById("popup").style.display = "block";
}
function hidePopup() {
	document.getElementById("contentSilverLight").style.visibility = "visible";
	document.getElementById("popup").style.display = "none";
}