﻿// Global variables used by the functions below.
var redirectURL = "";
var blnGoAhead = true;

// Displays the MessageBox.
function showMessageBox(strUrl)
{
	redirectURL = strUrl;
	blnGoAhead = true;

	//document.getElementById("content_bg").style.height = "336px";
	//document.getElementById("content_bg").style.overflow = "hidden";
	
	document.getElementById("MessageBoxContainer").style.display = "block";
	document.getElementById("MessageBoxOpacity").style.display = "block";
	document.getElementById("MessageBox").style.display = "block";
	
	setTimeout("leaveSite()", 6000);
}

// Hides the MessageBox.
function hideMessageBox()
{
	//document.getElementById("content_bg").style.height = "";
	//document.getElementById("content_bg").style.overflow = "visible";
	
	document.getElementById("MessageBoxContainer").style.display = "none";
	document.getElementById("MessageBoxOpacity").style.display = "none";
	document.getElementById("MessageBox").style.display = "none";
	
	blnGoAhead = false;
}

// Takes the user to the requested URL.
function leaveSite()
{
	if(blnGoAhead)
	{
		window.location = redirectURL;
	}
}

// Displays the SendLink.
function showSendLink()
{
	window.location.hash = "PageTop"; 
	document.getElementById("MessageBoxContainer").style.display = "block";
	document.getElementById("MessageBoxOpacity").style.display = "block";
	document.getElementById("SendLink").style.display = "block";
}

// Hides the SendLink.
function hideSendLink()
{
	document.getElementById("MessageBoxContainer").style.display = "none";
	document.getElementById("MessageBoxOpacity").style.display = "none";
	document.getElementById("SendLink").style.display = "none";
}
