//
// $Id: Dialog.js, v. 0.1 2002/07/01 9:04:56 AM aselimovic Exp $
//

function openDialog(url, windowName, width, height) {
   return self.open(url, windowName, "dependent=1,hotkeys=1,width=" + width.toString() + "," + "height=" + height.toString());
}

function closeDialog() {
   self.close();
}