
function updateFlashObject(whichmovie, obj, val)
{
    var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
    var mc = InternetExplorer ? window[whichmovie] : window.document[whichmovie];
    var returnvalue = val;
    var returnobj = obj;
    mc.SetVariable(returnobj, returnvalue);
};

var ddwin;
function callDigitalDownloadPopup(filename) 
{

	var etcParams = 'width=500,height=520,directories=0,location=0,menubar=0,resizable=0,status=0,toolbar=0,scrollbars=0';
	ddwin = window.open(filename, 'newwin', etcParams);	
	ddwin.focus();

};
