/*****************************************************************************
** -------------------- Program Name    : eCom Multi System © . --------------
** -------------------- Program Version :  v.3.5.3 ---------------------------
** -------------------- Program Author  : Athco Pros Team . ------------------
** -------------------- Graphics        : Athco Graphics . -------------------
** -------------------- Web Site        : www.Athco.com.sa -------------------
** -------------------- E-Mail          : Sales@Athco.com.sa -----------------
** -------------------- Last Modified   : 01.03.2009 -------------------------
** -------------------- Distribution    : Via  Web Site ----------------------
** -------------------- (C) Copyright 2005 Athco Co. -------------------------
*****************************************************************************/

function eComWindow(TitlePage,UrlPage,WidthPop,HeightPop,Theme) {
         WindoweCom = new Window('', {className: Theme, title: TitlePage,
                                  width:WidthPop, height:HeightPop, zIndex: 100, resizable: true,
                                  url: UrlPage, showEffect:Element.show, hideEffect: Effect.SwitchOff, draggable:true})
         WindoweCom.setDestroyOnClose(true);
         WindoweCom.showCenter(true);
        }

function eComWindowAjax(UrlPage,Method,Ok,Cancel,Top,WidthPop,HeightPop,Theme) {
         Dialog.confirm({url: UrlPage , options: {method: Method}},
                        {top:Top , width:WidthPop, height:HeightPop, className: Theme, okLabel: Ok, cancelLabel:Cancel});
         }

