// JavaScript Document
// Created by TJ Jones 04/27/2010

// Helper function:
// gain access to swf for callback if necessary
function flashMovie(movieName)
{
	if (navigator.appName.indexOf("Microsoft") != -1)
	{
		return window[movieName];
	}
	else 
	{
		return document[movieName];
	}
};

// Resize Function
function setFlashHeight(newHeight)
{
    //alert("Set Resize " + newHeight + "  " + elementName);
	var flashContentHolderDiv = document.getElementById('Main');
	flashContentHolderDiv.height = newHeight;
};

// Resize Function
function setFlashHeightByElementName(newHeight, elementName) {
    //alert("Set Resize " + newHeight + "  " + elementName);
    var flashContentHolderDiv = document.getElementById(elementName);
    flashContentHolderDiv.height = newHeight;
};

// Show System Loading message box
function showLoadingMessage(value) {
    // add code here...
    OnShowButtonClickLoad();
};

// Hide System Loading message box
function hideLoadingMessage(value)
{
	// add code here...
};

function showFeedbackPanel(value, url)
{
	// add code here...
};
