<?xml version="1.0" encoding="UTF-8"?>
<!--
****************************************************************************

     File Name:   deleteContact.box

****************************************************************************
   C O P Y R I G H T   A N D   C O N F I D E N T I A L I T Y   N O T I C E
****************************************************************************

      Copyright (c) 2004-2005 America Online, Inc.  All rights reserved.
      This software contains valuable confidential and proprietary
      information of America Online, Inc. and is subject to applicable
      licensing agreements.  Unauthorized reproduction, transmission or
      distribution of this file and its contents is a violation of
      applicable laws.

            A M E R I C A   O N L I N E   C O N F I D E N T I A L

****************************************************************************
-->




<!DOCTYPE window SYSTEM "box://addressBookApp/resources/dialogs.dtd">

<?import href="box://boxelyToolkit/theme/toolkit.box"?>
<?import href="box://boxelyToolkit/content/gadgets.box"?>
<?import href="box://addressBookApp/theme/style.box"?>

<aolDialog xmlns="http://www.aol.com/boxely/box.xsd"
    xmlns:s="http://www.aol.com/boxely/style.xsd"    
    xmlns:on="http://www.aol.com/boxely/reaction.xsd"
    icon="#bmp.aBookIcon"
    title="&deleteContact.title;" 
    chromeless="true" padding="0" 
    s:width="300" s:height="150">
    

<script language="jscript" href="box://frontierApp/content/streamliner/sheetUtil.js" />
<reaction event="initialized" action="try { onSheetConstructed(); } catch (err) {}"/>
    
    <script id="newCatDialog" language="jscript" href="box://addressBookApp/content/dialogs/deleteContact.js"/>
    
    <reaction event="constructed" action="onConstructed();"/>
    <reaction event="keyPress" keyCode="ESCAPE" action="scene.close();"/>
    
    <vbox style="dialogContents">
		<hbox s:marginTop="15" s:hAlign="center">
			<aolMultilineStatic id="prompt" s:height="auto" s:hAlign="center"/>
		</hbox>
	</vbox>
    
    <spacer s:height="1" s:fill="#DFE2E7"/>
    <hbox s:hAlign="center" style="bottomButtonGroupContainer" s:vAlign="center">
        <aolButton label="&dialog.delete;" tooltip="&dialog.delete_tooltip;" defaultButton="true" on:command="onDelete();"/>
        <aolButton label="&dialog.cancel;" tooltip="&dialog.cancel_tooltip;" on:command="onClose();"/>
    </hbox>
    
</aolDialog>