| 1 | <cfsetting enablecfoutputonly=false> |
|---|
| 2 | <!--- |
|---|
| 3 | Name : admin_header.cfm |
|---|
| 4 | Author : Raymond Camden |
|---|
| 5 | Created : September 6, 2004 |
|---|
| 6 | Last Updated : April 10, 2006 |
|---|
| 7 | History : work w/o mapping (rkc 3/10/06) |
|---|
| 8 | : minor html mod (rkc 4/10/06) |
|---|
| 9 | Purpose : |
|---|
| 10 | ---> |
|---|
| 11 | |
|---|
| 12 | <cfoutput> |
|---|
| 13 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 14 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 15 | <title>#attributes.title#</title> |
|---|
| 16 | <link rel="stylesheet" type="text/css" href="../stylesheets/adminStyle.css"> |
|---|
| 17 | <script language="JavaScript" SRC="javaScripts.js"></script> |
|---|
| 18 | <cfif attributes.loadspry> |
|---|
| 19 | <script src="../includes/SpryData.js"></script> |
|---|
| 20 | <script src="../includes/xpath.js"></script> |
|---|
| 21 | </cfif> |
|---|
| 22 | </head> |
|---|
| 23 | |
|---|
| 24 | <body onload="MM_preloadImages('../images/menu1Hot.gif','../images/menu2Hot.gif','../images/menu3Hot.gif','../images/menu4Hot.gif')"> |
|---|
| 25 | <table width="709" border="0" align="center" cellpadding="0" cellspacing="0"> |
|---|
| 26 | <tr> |
|---|
| 27 | <td background="../images/bodyBg.gif"><table width="100%" border="0" cellspacing="0" cellpadding="0"> |
|---|
| 28 | <tr> |
|---|
| 29 | <td><img src="../images/headerTop.gif" width="709" height="106" /></td> |
|---|
| 30 | </tr> |
|---|
| 31 | <tr> |
|---|
| 32 | <td><table width="100%" border="0" cellspacing="0" cellpadding="0"> |
|---|
| 33 | <tr> |
|---|
| 34 | <td><img src="../images/menuLeft.gif" width="165" height="37" /></td> |
|---|
| 35 | <td><a href="" onmouseout="MM_swapImgRestore();delayhidemenu()" onmouseover="MM_swapImage('Image5','','../images/menu1Hot.gif',1);dropdownmenu(this, event, menu1, '148px')"><img src="../images/menu1.gif" name="Image5" width="150" height="37" border="0" id="Image5" /></a></td> |
|---|
| 36 | <td><a href="" onmouseout="MM_swapImgRestore();delayhidemenu()" onmouseover="MM_swapImage('Image6','','../images/menu2Hot.gif',1);dropdownmenu(this, event, menu2, '147px')"><img src="../images/menu2.gif" name="Image6" width="149" height="37" border="0" id="Image6" /></a></td> |
|---|
| 37 | <td><a href="" onmouseout="MM_swapImgRestore();delayhidemenu()" onmouseover="MM_swapImage('Image7','','../images/menu3Hot.gif',1);dropdownmenu(this, event, menu3, '113px')"><img src="../images/menu3.gif" name="Image7" width="115" height="37" border="0" id="Image7" /></a></td> |
|---|
| 38 | <td><a href="" onmouseout="MM_swapImgRestore();delayhidemenu()" onmouseover="MM_swapImage('Image8','','../images/menu4Hot.gif',1);dropdownmenu(this, event, menu4, '113px')"><img src="../images/menu4.gif" name="Image8" width="115" height="37" border="0" id="Image8" /></a></td> |
|---|
| 39 | <td><img src="../images/menuRight.gif" width="15" height="37" /></td> |
|---|
| 40 | </tr> |
|---|
| 41 | </table></td> |
|---|
| 42 | </tr> |
|---|
| 43 | <tr> |
|---|
| 44 | <td height="300" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> |
|---|
| 45 | <tr> |
|---|
| 46 | <td width="1%" valign="top"><img src="../images/left.gif" width="18" height="159" /></td> |
|---|
| 47 | <td width="98%" valign="top"><br /> |
|---|
| 48 | <div class="adminPageHeader">#attributes.title#</div> |
|---|
| 49 | <div class="adminBody"> |
|---|
| 50 | </cfoutput> |
|---|
| 51 | |
|---|
| 52 | <cfsetting enablecfoutputonly=true> |
|---|
| 53 | |
|---|