	// Callback function used from Flash to display an alert box.
	function display_Alert(p_Link)
	{
		alert(p_Link);
	}

	// Callback function used from Flash to open a new window.
	function open_URL(p_Link, name)
	{
		window.open(p_Link, "_blank", name);
	}

	// Callback function used from Flash to open a new window.
	function send_Link(p_Link)
	{ 
		window.open(p_Link, "_blank", 'toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
	}

	// Callback function used from Flash to open a new window.
	function open_Link(p_Link)
	{ 	
		window.open(p_Link, "_blank", 'toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
	}

	// ??
	function send_Popup(p_Link) 
	{
		//Executes the link
		eval(p_Link);
	}

	// Track when the user clicks on the save button.
	function pdf_Trakcer(src)
	{
		//Get timestamp	
		var currentTime = new Date();
		var month = currentTime.getMonth() + 1;
		var day = currentTime.getDate();
		var year = currentTime.getFullYear();
		var hour = currentTime.getHours();
		var min = currentTime.getMinutes();
		var sec = currentTime.getSeconds();
		
		var tString = src + "%3Btimestamp%3D" + month + day + year + hour + min + sec;
			
		document.getElementById("imgTracker").src = tString;
	}

	// Track the actions that the Flash code is sending to Site Analyzer
	function load_Trakcer(src)
	{
		//Get timestamp	
		var currentTime = new Date();
		var month = currentTime.getMonth() + 1;
		var day = currentTime.getDate();
		var year = currentTime.getFullYear();
		var hour = currentTime.getHours();
		var min = currentTime.getMinutes();
		var sec = currentTime.getSeconds();
		
		var tString = src + "%3Btimestamp%3D" + month + day + year + hour + min + sec;
	
		document.getElementById("imgTracker").src = tString;
	}

	// Track the actions that the Flash code is sending to Site Analyzer
	function load_Trakcer2(src)
	{
		//Get timestamp	
		var currentTime = new Date();
		var month = currentTime.getMonth() + 1;
		var day = currentTime.getDate();
		var year = currentTime.getFullYear();
		var hour = currentTime.getHours();
		var min = currentTime.getMinutes();
		var sec = currentTime.getSeconds();
		
		var tString = src + "%3Btimestamp%3D" + month + day + year + hour + min + sec;
	
		document.getElementById("imgTracker2").src = tString;
	}

	// Close the window
	function closePopup()
	{
		//Close window
		window.close();
	}


