home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 December / PCWorld_2006-12_cd.bin / komunikace / netscape / nsb-install-8-1-2.exe / chrome / aim.jar / content / aim / newActivationOverlay.xul < prev    next >
Extensible Markup Language  |  2006-01-06  |  2KB  |  43 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://aim/content/activation.css" type="text/css"?>
  4. <!DOCTYPE window [
  5. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  6. %brandDTD;
  7. <!ENTITY % newActivationOverlayDTD SYSTEM "chrome://communicator/locale/profile/newActivationOverlay.dtd" >
  8. %newActivationOverlayDTD;
  9. ]> 
  10.  
  11. <overlay id="activationOverlay" 
  12.          xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  13.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  14.  
  15.   <script type="application/x-javascript" src="chrome://aim/content/newActivationOverlay.js"/>
  16.   <stringbundle id="bundle_activation" src="chrome://communicator/locale/profile/activation.properties"/>
  17.   <stringbundle id="bundle_brand" src="chrome://global/locale/brand.properties"/>
  18.  
  19.   <wizardpage id="ispPage1" pageid="ispPage1" 
  20.               onpageshow="return accountTypeLoad();"
  21.               onpageadvanced="return accountTypeUnLoad();"
  22.               label="&webMailAccountTitle.label;">
  23.  
  24.     <script type="application/x-javascript" src="chrome://communicator/content/profile/acctTypeOverlay.js"/>
  25.  
  26.     <vbox id="act_accounttype">
  27.       <description>&chooseAccount.label;</description>
  28.       <separator/>
  29.       <radiogroup name="webmailAccount" id="webmailAccount">
  30.         <radio id="existingaccount" value="existingaccount"
  31.                oncommand="selectedExistingAccount();"
  32.                selected="true"
  33.                label="&existingWebmailAccount.label;"/>
  34.  
  35.         <radio id="newaccount" value="newaccount"
  36.                oncommand="selectedNewAccount();"
  37.                label="&newWebmailAccount.label;"/>
  38.       </radiogroup>
  39.     </vbox>
  40.   </wizardpage>
  41.  
  42. </overlay>
  43.