﻿// JScript File

function returnValue(atlasValue, fieldID)
{
    window.opener.document.getElementById(fieldID).value = atlasValue;
    window.close();
}

function InitFlashAtlas()
{
    try
    {
        window.onload = ActivateFlash 
    } catch(e){} 
}

function ActivateFlash() 
{ 
    var objects = document.getElementsByTagName("object"); 
    for (var i = 0; i < objects.length; i++) 
    { 
      objects[i].click(); 
    } 
}

