function ObjectLoad(file)
{
    if ( objectDestination )
    {
        //var bodyElement = objectDestination.parentElement;
        var bodyElement = objectDestination.parentNode;
       
        //if ( bodyElement.objectSource )
        if ( file )
        {
            //bodyElement.innerHTML = "<embed width=100% height=100% fullscreen=yes>";
            //bodyElement.firstChild.src = bodyElement.objectSource;

            bodyElement.innerHTML = "<embed src=" + file + " width=100% height=100% fullscreen=yes>";
        }
    }
}
