<?xml version="1.0" encoding="UTF-8"?>
<!--
****************************************************************************

     File Name:   deletePrompt.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) 2006 AOL LLC.  All rights reserved.
//      This software contains valuable confidential and proprietary
//      information of AOL LLC. 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 O L   C O N F I D E N T I A L

****************************************************************************
-->


<!DOCTYPE window [
  <!ENTITY % bl SYSTEM "box://imApp/resources/bl.dtd">
  %bl;
]>

<?import href="box://aimToolkit/content/gadgets.box"?>
<?import href="box://aimToolkit/theme/toolkit.box"?>
<?import href="box://imApp/content/blabStyles.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"
        id="window" translucent="false" chromeless="true"
        s:width="&BL.deletePrompt.Width;" 
        s:height="&BL.deletePrompt.Height;"
        icon="box://imApp/resources/imWindowIconSmall.png"
        nativeIcon="box://imApp/resources/aim.ico"
        on:initialized="onInitialized();"
        on:constructed="onConstructed();"
        on:close="onClose();"
        >

    <script id="dialogBase" language="jscript" href="box://aimToolkit/content/dialog/dialogbase.js"/>
    <script id="main" language="jscript" href="box://imApp/content/bl/deletePrompt.js"/>

    <reaction event="keyPress" keyCode="ESCAPE" action="onCancel();"/>

    <commandGroup>
        <command id="cmdOk" action="onOk();"/>
        <command id="cmdCancel" action="onCancel();"/>
    </commandGroup>

	<vbox id="mainGroup" s:flex="1" accDescription="Remove" >
	    <vbox s:padding="10" s:vSpace="10" s:flex="1">
            <aolMultilineStatic id="dialogPrompt" value="" s:flex="1" s:maxWidth="auto" />
		    <hbox s:hAlign="start">
                <aolCheckButton id="deleteFromAB" toggled="false" label="" s:marginLeft="10"/>
            </hbox>
        </vbox>
        <hbox style="bottomButtonGroupContainer">
		    <aolButton label="&BL.deletePrompt.Yes;" tabIndex="11" defaultButton="true" command="cmdOk"/>
		    <aolButton label="&BL.deletePrompt.No;" cancelButton="true" command="cmdCancel"/>
	    </hbox>
	</vbox>
    
</aolDialog>

