﻿// JScript File

    var upWin = '';

    function ShowUploadForm() {
        upWin = window.open("PopUpload.aspx","winUpload","height=200,width=300");
        upWin.moveTo(250,250);
        upWin.focus();
    }
    
    function InitPopup() {
        upWin = window.open("#","winUpload","height=1,width=1");
        upWin.close();
    }
    
    function FileComplete(inFileName) {
        window.opener.FileUploaded(inFileName);
        window.close();
    }
    
    function FileUploaded(inFileName) {
        //FlashMovie.runFlashScript();
        document.getElementById("swfEggDesigner").sendToFlash(inFileName);
    }