//----------------------------------------------------------------------------//
    function PopUp ( URL , Width , Height )
    {
        var Left = ( screen.width - Width ) / 2 ;
        var Top = ( screen.height - Height ) / 2 ;
        Day = new Date();
        ID = Day.getTime();
        eval("Page"+ID+"=window.open('" + URL + "','" + ID + "','height="+Height+",width="+Width+",top='+Top+',left='+Left+',toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0');");
    }
//----------------------------------------------------------------------------//