﻿function getFlashMovie(movieName)
{
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document[movieName];
}
function show(tool)
{
    document.getElementById('kobaltPopupContent').style.height = "228px";
    document.getElementById('kobaltPopupContainer').style.height = "228px";
    document.getElementById('kobaltPopupContainer').style.marginTop = "-228px";
    document['kobaltPopupContent'].showPopup(tool);
}
function hideFlash()
{
	document.getElementById('kobaltPopupContent').blur();
	document.getElementById('kobaltPopupContent').style.height = "1px";
    document.getElementById('kobaltPopupContainer').style.height = "1px";
    document.getElementById('kobaltPopupContainer').style.marginTop = "-1px";
}