//==============================================================================
// Function: DC_DrawHorizontalCell()
// Description: Create the Horizontal Cells
// If you change anything in this Function you will need to change DC_BottomNav()
// Inputs: None
// Return: None
//==============================================================================
function DC_DrawHorizontalCell(iPrecent, iSiteRef, iHref, iName) {
   var sHBarCell = "<td width='"+iPrecent+"%' nowrap>" +
    "<a class='Headers' href='"+iSiteRef+iHref+"' target='_top'>"+iName+"</a></td>" +
    "<td>|</td>";
	return(sHBarCell);
}
//==============================================================================
// Function: DC_DrawHorizontalBarTop()
// Description: Draws the Top Horizontal Bar
// If you change anything in this Function you will need to change DC_BottomNav()
// Calls DC_DrawHorizontalCell(Precent to create "even" buttons, Site Reference, Sub directory and File Name, Name for Button)
// Inputs: None
// Return: None
//==============================================================================
function DC_DrawHorizontalBarTop() {
	var sSiteRef = "";
  var dhc1Size = "16"; // = RoundDown (100 / {total number of active Cells})
//  var sSiteRef = "../";
   var sHBarTop = "<table height='18' width='100%'><tr align='center'><td>|</td>" +
   DC_DrawHorizontalCell(dhc1Size, sSiteRef, "index.php", "Home") +
//   DC_DrawHorizontalCell(dhc1Size, sSiteRef, "dc_news.htm", "News") +
   DC_DrawHorizontalCell(dhc1Size, sSiteRef, "dc_location.htm", "Location/Travel") +
   DC_DrawHorizontalCell(dhc1Size, sSiteRef, "dc_members.htm", "Memberships") +
   DC_DrawHorizontalCell(dhc1Size, sSiteRef, "dc_dealers.htm", "Dealers/Exhibitors") +
//   DC_DrawHorizontalCell(dhc1Size, sSiteRef, "dc_guests_list.php", "Guests") +
   DC_DrawHorizontalCell(dhc1Size, sSiteRef, "dc_events.htm", "Events/Services") +
   DC_DrawHorizontalCell(dhc1Size, "", "http://gaming.dragoncon.net/index.html", "Gaming") +
   "</tr></table>";

	document.writeln(sHBarTop);
}

//==============================================================================
// Function: DC_DrawHorizontalBarBottom()
// Description: Draws the Bottom Horizontal Bar
// If you change anything in this Function you will need to change DC_BottomNav()
// Calls DC_DrawHorizontalCell(Precent to create "even" buttons, Site Reference, Sub directory and File Name, Name for Button)
// Inputs: None
// Return: None
//==============================================================================
function DC_DrawHorizontalBarBottom() {
	var sSiteRef = "";
  var dhc2Size = "20"; // = RoundDown (100 / {total number of active Cells})
//  var sSiteRef = "../";

   var sHBarBottom = "<table height='18' width='100%'><tr align='center'><td>|</td>" +
//   DC_DrawHorizontalCell(dhc2Size, sSiteRef, "dc_charity.htm", "Charity") +
   DC_DrawHorizontalCell(dhc2Size, sSiteRef, "dc_contests.htm", "Contests") +
   DC_DrawHorizontalCell(dhc2Size, sSiteRef, "con_art_show.htm", "Art Show") +
   DC_DrawHorizontalCell(dhc2Size, sSiteRef, "con_film_festival.htm", "Film Festival") +
//   DC_DrawHorizontalCell(dhc2Size, "", "http://publications.dragoncon.net/", "PR/Advertising") +
//   DC_DrawHorizontalCell(dhc2Size, sSiteRef, "dc_links.htm", "Links/Photos") +
   DC_DrawHorizontalCell(dhc2Size, sSiteRef, "dc_contact.htm", "Contact Us") +
   DC_DrawHorizontalCell(dhc2Size, "", "http://store.dragoncon.net/", "Store") +
      "</tr></table>";

	document.writeln(sHBarBottom);
}
//==============================================================================
// Function: DC_TableSection1()
// Description: Draws the Top Section of a Box
// Inputs: None
// Return: None
//==============================================================================
function DC_TableSection1() {
	var sSiteRef = "";
//  var sSiteRef = "../";

   var TableSection1 = "<table width='100%' border='0' cellspacing='0' cellpadding='0'>" +
        "<tr>" +
          "<td height='27'><img border='0' src='"+sSiteRef+"images/page-design/top-lft.png' width='9' height='27'>" +
          "</td>" +
          "<td width='100%' background='"+sSiteRef+"images/page-design/top-cnt.png' class='Headers'>" +
            "<p class='Headers'>";

	document.writeln(TableSection1);
}
//==============================================================================
// Function: DC_TableSection2()
// Description: Draws the Middle Section of a Box
// Inputs: None
// Return: None
//==============================================================================
function DC_TableSection2() {
	var sSiteRef = "";
//  var sSiteRef = "../";

   var TableSection2 = "</td>" +
          "<td><img border='0' src='"+sSiteRef+"images/page-design/top-rt.png' width='10' height='27'></td>" +
        "</tr>" +
        "<tr>" +
          "<td width='9' height='35' background='"+sSiteRef+"images/page-design/border-lft.png'><span style='display: none'>&nbsp;</span></td>" +
          "<td width='87%' valign='top' bgcolor='#FFFFFF' class='MainBody'>" +
                "<p class='MainBody'>";

	document.writeln(TableSection2);
}
//==============================================================================
// Function: DC_TableSection3()
// Description: Draws the Last Section of a Box
// Inputs: None
// Return: None
//==============================================================================
function DC_TableSection3() {
	var sSiteRef = "";
//  var sSiteRef = "../";

   var TableSection3 = "</td>" +
          "<td width='11' background='"+sSiteRef+"images/page-design/border-rt.png'>&nbsp;</td>" +
        "</tr>" +
        "<tr>" +
          "<td height='11' valign='top'>" +
            "<img border='0' src='"+sSiteRef+"images/page-design/bottom-lft.png' width='9' height='11'></td>" +
          "<td width='100%' background='"+sSiteRef+"images/page-design/bottom-cnt.png'><span style='display: none'>&nbsp;</span></td>" +
          "<td valign='top'>" +
          "<img border='0' src='"+sSiteRef+"images/page-design/bottom-rt.png' width='10' height='11'></td>" +
        "</tr>" +
      "</table>";

	document.writeln(TableSection3);
}
//==============================================================================
// Function: DC_DrawSideL1()
// Description: Draws the First Box on the left side
// Inputs: None
// Return: None
//==============================================================================
function DC_DrawSideL1() {
   var DrawSideL1Header = "NAVIGATION";
   var DrawSideL1Body = "&nbsp";
   DC_TableSection1();
	document.writeln(DrawSideL1Header);
   DC_TableSection2();
	NavMenuList();
	document.writeln(DrawSideL1Body);
   DC_TableSection3();
}
//==============================================================================
// Function: DC_DrawSideL2()
// Description: Draws the Second Box on the left side
// Inputs: None
// Return: None
//==============================================================================
function DC_DrawSideL2() {
//    var DrawSideL2Header = "DON'T MISS:";
//    var DrawSideL2Body = '<p align="center"><a href="people/carradd.html"><img src="images/guest-photos/carraddsm.gif" width="112" height="131"></a><br><a href="people/shadixg.html"><img src="images/guest-photos/shadixgsm.gif" width="112" height="131"></a><br><a href="people/davisop.html"><img src="images/guest-photos/davisopsm.jpg" width="112" height="131"></a><br><a href="people/benzj.html"><img src="images/guest-photos/benzjsm.gif" width="112" height="131"></a><br><a href="people/wangg.html"><img src="images/guest-photos/wanggsm.jpg" width="112" height="131"></a></p>';
//    DC_TableSection1();
// document.writeln(DrawSideL2Header);
//    DC_TableSection2();
//  document.writeln(DrawSideL2Body);
//    DC_TableSection3();
}
//==============================================================================
// Function: DC_DrawSideL3()
// Description: Draws the Third Box on the left side
// Inputs: None
// Return: None
//==============================================================================
function DC_DrawSideL3() {
   //var DrawSideL3Header = "IN SYMPATHY";
   //var DrawSideL3Body = "&nbsp;Test";
   //DC_TableSection1();
	//document.writeln(DrawSideL3Header);
   //DC_TableSection2();
	//document.writeln(DrawSideL3Body);
   //DC_TableSection3();

}
//==============================================================================
// Function: DC_DrawSideL4()
// Description: Draws the Forth Box on the left side
// Inputs: None
// Return: None
//==============================================================================
function DC_DrawSideL4() {
   //var DrawSideL4Header = "IN SYMPATHY";
   //var DrawSideL4Body = "&nbsp;Test";
   //DC_TableSection1();
	//document.writeln(DrawSideL4Header);
   //DC_TableSection2();
	//document.writeln(DrawSideL4Body);
   //DC_TableSection3();
}
//==============================================================================
// Function: DC_DrawSideR1()
// Description: Draws the First Box on the right side
// Inputs: None
// Return: None
//==============================================================================

function DC_DrawSideR1() {
   var iDTC = DC_DayCounter();
   var DrawSideR1Header = "DAYS UNTIL THE CON";
   var DrawSideR1Body1 = "<div align=center><br><b>" + iDTC + "</b></div>";
   DC_TableSection1();
	document.writeln(DrawSideR1Header);
   DC_TableSection2();
	document.writeln(DrawSideR1Body1);
   DC_TableSection3();
}
//==============================================================================
// Function: DC_DrawSideR2()
// Description: Draws the First Box on the right side
// Inputs: None
// Return: None
//==============================================================================
function DC_DrawSideR2() {
   //var DrawSideR2Header = "Important Information";
   //var DrawSideR2Body1 = '<p></p>';
   //DC_TableSection1();
   //document.writeln(DrawSideR2Header);
   //DC_TableSection2();
   //document.writeln(DrawSideR2Body1);
   //DC_TableSection3();
}
//==============================================================================
// Function: DC_DrawSideR3()
// Description: Draws the Third Box on the right side
// Inputs: None
// Return: None
//==============================================================================

function DC_DrawSideR3() {
   var DrawSideR3Header = "Announcement";
   var DrawSideR3Body1 = 
    "<p>For all the information on what happened at Dragon*Con 2006, check out <a href='http://dailydragon.dragoncon.net'>The Daily Dragon</a>.</p>" +
    "<hr>" +
    "<b>D*C Communities</b><br>" +
	  " - <a href='http://community.livejournal.com/dragoncon/'>LiveJournal</a><br>" +
	  " - <a href='http://www.myspace.com/dragoncon'>MySpace</a><br>" +
	  " - <a href='http://groups.yahoo.com/group/DragonCon/'>Yahoo</a><br>";
   DC_TableSection1();
 	document.writeln(DrawSideR3Header);
   DC_TableSection2();
 	document.writeln(DrawSideR3Body1);
   DC_TableSection3();
}

//==============================================================================
// Function: DC_DrawSideR4()
// Description: Draws the Forth Box on the right side
// Inputs: None
// Return: None
//==============================================================================

function DC_DrawSideR4() {
//   var DrawSideR4Header = "DAYS UNTIL THE CON";
//   var DrawSideR4Body1 = "<div align=center><br><b>";
//   var DrawSideR4Body2 = "</b></div>";
//   DC_TableSection1();
//	document.writeln(DrawSideR4Header);
//   DC_TableSection2();
//	document.writeln(DrawSideR4Body1);
//	DC_DayCounter();
//	document.writeln(DrawSideR4Body2);
//   DC_TableSection3();
}
//==============================================================================
// Function: DC_DayCounter()
// Description: Draws the Top Horizontal Bar
// Inputs: None
// Return: None
//==============================================================================
function DC_DayCounter() {
 var ipassbacktext1 = "";
 nextDC =new Date("August 31, 2007");
 today  =new Date();
 msPerDay=24 * 60 * 60 * 1000;
 daysaway=(nextDC.getTime()-today.getTime())/msPerDay;
 daysaway=Math.round(daysaway);
 if (daysaway>0)                ipassbacktext1 = (" ONLY "+  daysaway +" DAYS LEFT! ");
 if (daysaway>-5 && daysaway<1) ipassbacktext1 = (" NOW! ");
 if (daysaway<0 && daysaway<-4) ipassbacktext1 = (" NEXT Dragon*Con: September 2008 ");
 return (ipassbacktext1);
}

//==============================================================================
// Function: DC_BottomNav()
// Description: Draws the Top Horizontal Bar
// If you change anything in this Function you will need to change DC_DrawHorizontalBarTop()
//  or DC_DrawHorizontalBarBottom()
// Inputs: None
// Return: None
//==============================================================================
function DC_NavLink(iSiteRef, iHref, iName) {
   var sNavLink = "<a class='Headers' href='"+iSiteRef+iHref+"' target='_top'>"+iName+"</a>";

	return(sNavLink);
}

//==============================================================================
// Function: DC_BottomNav()
// Description: Draws the Top Horizontal Bar
// If you change anything in this Function you will need to change DC_DrawHorizontalBarTop()
//  or DC_DrawHorizontalBarBottom()
// Inputs: None
// Return: None
//==============================================================================
function DC_BottomNav() {
	var sSiteRef = "";
//  var sSiteRef = "../";

   var sBottomNav = DC_NavLink(sSiteRef, "index.php", "Home") + " - " +
   DC_NavLink(sSiteRef, "dc_news.htm", "News") + " - " +
   DC_NavLink(sSiteRef, "dc_location.htm", "Location/Travel") + " - " +
   DC_NavLink(sSiteRef, "dc_members.htm", "Memberships") + " - " +
   DC_NavLink(sSiteRef, "dc_dealers.htm", "Dealers/Exhibitors") + " - " +
   DC_NavLink(sSiteRef, "dc_guests_list.php", "Guests") + "<br>" +
   DC_NavLink(sSiteRef, "dc_events.htm", "Events/Services") + " - " +
   DC_NavLink(sSiteRef, "con_art_show.htm", "Art Show") + " - " +
   DC_NavLink(sSiteRef, "dc_contests.htm", "Contests") + " - " +
   DC_NavLink(sSiteRef, "dc_charity.htm", "Charity") + " - " +
   DC_NavLink(sSiteRef, "http://publications.dragoncon.net/", "PR/Advertising") + " - " +
   DC_NavLink(sSiteRef, "dc_contact.htm", "Contact Us") + " - " +
   DC_NavLink(sSiteRef, "http://store.dragoncon.net/", "Store");

	document.writeln(sBottomNav);
}

//==============================================================================
// Function: DC_DrawFooter()
// Description: Draws the actual footer
// Inputs: None
// Return: None
//==============================================================================
function DC_DrawFooter() {
   var sFooter = "<p align='center'>Internet support and connectivity by Webmaster: " +
      "<a class='Darkbody' href='mailto:webmaster@dragoncon.org' target='_new'>David Gordon</a><br>" +
         "© Copyright 2006/07 <a class='Darkbody' href='mailto:dragoncon@dragoncon.org'>DCI, Inc.</a> " +
         "All Rights Reserved. | Dragon*Con: <font color='#BFAFBA'>Aug. 31 - Sep. 3, 2007.</font>";

	document.writeln(sFooter);
}

//==============================================================================
// Function: expandDiv(el)
// Description: Expands a section in the navigation menu
// Inputs: el = the section name.
// Return: None
//==============================================================================
function expandDiv(el)
{
  //if (!ver4) return;
  document.getElementById("nav_2_open_" + el).style.display = "block";
  document.getElementById("nav_2_closed_" + el).style.display = "none";
  activeDiv = el;
}

//==============================================================================
// Function: collapseDiv(el)
// Description: Collapses a section in the navigation menu
// Inputs: el = the section name.
// Return: None
//==============================================================================
function collapseDiv(el)
{
  //if (!ver4) return;
  document.getElementById("nav_2_open_" + el).style.display = "none";
  document.getElementById("nav_2_closed_" + el).style.display = "block";
  activeDiv = "";
}

//==============================================================================
// This Section Runs everytime a web page is accessed.
// It detects to see if the person is running a browser that can handle
// the Expanding and collapsing Menu.
//==============================================================================
var bV=parseInt(navigator.appVersion);
NS6=document.getElementById&&!document.all;
IE4=((document.all)&&(bV>=4))?true:false;
ver4 = (NS6 || IE4) ? true : false;
function expandDiv(){return;}
function collapseDiv(){return;}

//==============================================================================
// Function: initialize()
// Description: All sections are collapsed via the Cascading Style Sheet.
//             This section will expand a section on start up.
//             Add expandDiv('sectionName'); for any section you want to
//             start opened.
// Inputs: None
// Return: None
//==============================================================================
function initialize()
{
// expandDiv('test2');
}

//==============================================================================
// Function: expandDiv(el)
// Description: Expands a section in the navigation menu
// Inputs: el = the section name.
// Return: None
//==============================================================================
function expandDiv(el)
{
  if (!ver4) return;
//exclusive thingy!
//  if (activeDiv != "") collapseDiv(activeDiv);
  document.getElementById("nav_2_open_" + el).style.display = "block";
  document.getElementById("nav_2_closed_" + el).style.display = "none";
  activeDiv = el;
}


//==============================================================================
// Function: collapseDiv(el)
// Description: Collapses a section in the navigation menu
// Inputs: el = the section name.
// Return: None
//==============================================================================
function collapseDiv(el)
{
  if (!ver4) return;
  document.getElementById("nav_2_open_" + el).style.display = "none";
  document.getElementById("nav_2_closed_" + el).style.display = "block";
  activeDiv = "";
}

//==============================================================================
// Function: NavMenuTop(sectionEl, sectionName, sectionURL)
// Description: Creates the Collapsed and the top part of a sub menu
// Inputs: sectionEl = The a unique name for the section to reference.
//                It should be simple with only alpha and neumeric characters.
//         sectionName = This is the name that will show up on the menu.
//         sectionURL = This it the dinamic URL of the referenced page from
//                the main site.  The Java code will take care of adjustment.
// Return: None
//==============================================================================
function NavMenuTop(sectionEl, sectionName, sectionURL, sectionTarget)
{
   if (sectionURL.indexOf("http") != (-1)){
      var sSiteRef = "";
   } else {
	var sSiteRef = "";
//  var sSiteRef = "../";
   }
  var sNavMenuTop;

		sNavMenuTop = "<div class=\"nav_2_closed\" id=\"nav_2_closed_"+sectionEl+"\">" +
  "<table border=0 cellpadding=0 cellspacing=0 width=100%>" +
    "<tr>" +
      "<td align=left id=tab onClick=\"expandDiv('"+sectionEl+"'); return false;\">" +
         "<a href=\""+sSiteRef+sectionURL+"\" onClick=\"expandDiv('"+sectionEl+"'); return false;\">"+sectionName+"</a></td>" +
      "<td align=right id=tab onClick=\"expandDiv('"+sectionEl+"'); return false;\">" +
         "<img src=\""+sSiteRef+"images/page-design/arrow-rt.jpg\"  border=0></td>" +
    "</tr>" +
  "</table>" +
  "</div>" +
  "<div class=\"nav_2_open\" id=\"nav_2_open_"+sectionEl+"\">" +
	"<table border=0 cellpadding=0 cellspacing=0 width=100%>" +
		"<tr>" +
			"<td align=left id=tab onClick=\"collapseDiv('"+sectionEl+"'); return false;\">" +
            "<a onClick=\"collapseDiv('"+sectionEl+"'); return false;\">"+sectionName+"</a></td>" +
			"<td align=right id=tab onClick=\"collapseDiv('"+sectionEl+"'); return false;\">" +
            "<img src=\""+sSiteRef+"images/page-design/arrow-dn.jpg\"  border=0></td>" +
		"</tr>";

  	document.write(sNavMenuTop);
}

//==============================================================================
// Function: NavMenuSub(sectionName, sectionURL)
// Description: Creates the sub menus of a sub menu
// Inputs: sectionName = This is the name that will show up on the menu.
//         sectionURL = This it the dinamic URL of the referenced page from
//                the main site.  The Java code will take care of adjustment.
// Return: None
//==============================================================================
function NavMenuSub(sectionName, sectionURL, sectionTarget)
{
   if (sectionURL.indexOf("http") != (-1)){
      var sSiteRef = "";
   } else {
	var sSiteRef = "";
//  var sSiteRef = "../";
   }
	var sNavMenuSub;

		sNavMenuSub = "<tr>" +
		"<td align=right id=subtab colspan=2 bgcolor=\"#FFFFFF\" onMouseOver=\"style.backgroundColor='#eeeeee';\" onMouseOut=\"style.backgroundColor='#FFFFFF';\">" +
   	"<a href=\""+sSiteRef+sectionURL+"\" target=\""+sectionTarget+"\">"+sectionName+"</a></td>" +
	"</tr>";

  	document.write(sNavMenuSub);
}

//==============================================================================
// Function: NavMenuFinal()
// Description: Creates a blank row to close off a sub menu
// Inputs: None
// Return: None
//==============================================================================
function NavMenuFinal()
{
	var sSiteRef = "";
//  var sSiteRef = "../";

	var sNavMenuFinal;

		sNavMenuFinal = "<tr>" +
			"<td bgcolor=\"FFFFFF\" colspan=2><img src=\""+sSiteRef+"images/page-design/spacer.gif\" height=2></td>" +
		"</tr>" +
  "</table>" +
  "</div>";

  	document.write(sNavMenuFinal);
}

//==============================================================================
// Function: NavMenuSingle("sectionName", "sectionURL")
// Description: Creates the sub menus of a sub menu
// Inputs: sectionName = This is the name that will show up on the menu.
//         sectionURL = This it the dynamic URL of the referenced page from
//                the main site.  The Java code will take care of adjustment.
// Return: None
//==============================================================================
function NavMenuSingle(sectionName, sectionURL, sectionTarget)
{
   if (sectionURL.indexOf("http") != (-1)){
      var sSiteRef = "";
   } else {
	var sSiteRef = "";
//  var sSiteRef = "../";
   }

	var sNavMenuSingle;

  sNavMenuSingle = "<div class=\"nav_2_closed\">" +
	"<table border=0 cellpadding=0 cellspacing=0 width=100%>" +
		"<tr>" +
			"<td align=left); return false;\">" +
            "<a href=\""+sSiteRef+sectionURL+"\" target=\""+sectionTarget+"\">"+sectionName+"</a></td>" +
			"<td align=right>" +
            "<img src=\""+sSiteRef+"images/page-design/spacer.gif\" height=2></td>" +
		"</tr>"+
		"<tr>" +
			"<td bgcolor=\"FFFFFF\" colspan=2>" +
            "<img src=\""+sSiteRef+"images/page-design/spacer.gif\" height=2></td>" +
		"</tr>" +
  "</table>" +
  "</div>";

  	document.write(sNavMenuSingle);
}

//==============================================================================
// Function: NavMenuList()
// Description: Create the expanding and colapsable menu
// Expanding Menu: NavMenuTop("sectionEl", "sectionName", "sectionURL");
//                 NavMenuSub("sectionName", "sectionURL");
//                 NavMenuFinal();
// Non-Expanding Menu: NavMenuSingle("sectionName", "sectionURL");
// Inputs: None
// Return: None
//==============================================================================
function NavMenuList()
{
   document.write("<p>");
   NavMenuSingle("Home", "index.php", "_top");
   NavMenuTop("News","News", "dc_news.htm", "_top");
      NavMenuSub("News", "dc_news.htm", "_top");
      NavMenuSub("Staff Meetings", "dc_news.htm#Staff", "_top");
      NavMenuSub("Changes & Updates", "dc_news.htm#Changes", "_top");
      NavMenuSub("Misc. Web Stuff", "dc_news.htm#Misc", "_top");
      NavMenuFinal();
   NavMenuTop("Location","Location/Travel", "dc_location.htm", "_top");
      NavMenuSub("Location/Travel", "dc_location.htm", "_top");
      NavMenuSub("About Atlanta", "dc_location.htm#About_Atlanta", "_top");
      NavMenuSub("Host Hotels for 2007", "dc_location.htm#Host_Hotels", "_top");
      NavMenuSub("Overflow Hotels", "dc_location.htm#overflow", "_top");
      NavMenuSub("Restaurant Guide", "dc_location.htm#Restaurant", "_top");
      NavMenuSub("Travel", "dc_location.htm#Travel", "_top");
      NavMenuSub("Air Travel", "dc_location.htm#Air_Travel", "_top");
      NavMenuSub("Air Discounts", "dc_location.htm#AirTravel_Discount", "_top");
      NavMenuSub("Automotive Travel", "dc_location.htm#Auto_Travel", "_top");
      NavMenuSub("Bus Transport", "dc_location.htm#Bus_Travel", "_top");
      NavMenuSub("Car Rental Discounts", "dc_location.htm#Car_Rental_Discount", "_top");
      NavMenuSub("MARTA", "dc_location.htm#Marta", "_top");
      NavMenuSub("Passenger Train", "dc_location.htm#Passenger_Train", "_top");
      NavMenuFinal();
   NavMenuTop("Membership","Memberships", "dc_members.htm", "_top");
      NavMenuSub("Memberships", "dc_members.htm", "_top");
      NavMenuSub("Dragon*Con Memberships", "dc_members.htm#DC_Memb", "_top");
      NavMenuSub("Children's Memberships", "dc_members.htm#Children", "_top");
      NavMenuSub("Eternal Memberships", "dc_members.htm#Eternal", "_top");
      NavMenuSub("Picking Up Your Badge", "dc_members.htm#Pick-Up", "_top");
      NavMenuSub("Refund/Transfer Policy", "dc_members.htm#Refund", "_top");
      //NavMenuSub("Volunteer Staff", "dc_members.htm", "_top");
      //NavMenuSub("Volunteer Staff Policies", "m_volunteer.htm", "_top");
      NavMenuSub("Volunteer Staff Information", "m_volunteer.htm", "_top");
	    NavMenuSub("Other Membership Information", "dc_members.htm#Other", "_top");
	    NavMenuFinal();
   NavMenuTop("Dealers","Dealers/Exhibitors", "dc_dealers.htm", "_top");
      NavMenuSub("Dealers/Exhibitors", "dc_dealers.htm", "_top");
      NavMenuSub("Dealer/Exhibitor Packet (PDF)", "pdfs/DC_EH_DR_Contract2007.pdf", "_blank");
      NavMenuFinal();
   NavMenuTop("Guests","Guest Lists/Services", "dc_guests_list.php", "_top");
      NavMenuSub("Current Guests", "dc_guests_list.php", "_top");
      NavMenuSub("Past Guests", "dc_past_guests.php", "_top");
      NavMenuSub("Guest Services", "dc_guest_services.htm", "_top");
      NavMenuSub("Guest Registration & Application", "dc_guest_services.htm#Application", "_top");
      NavMenuFinal();
   NavMenuTop("Events","Events/Services", "dc_events.htm", "_top");
      NavMenuSub("Events/Services", "dc_events.htm", "_top");
      NavMenuSub("Events", "dc_events.htm#Features", "_top");
      NavMenuSub("Programming Tracks", "dc_events.htm#Programming", "_top");
      NavMenuSub("5th Annual Parade", "dc_events.htm#Parade", "_top");
  	  NavMenuSub("Charity Events", "dc_events.htm#Charity", "_top");
      NavMenuSub("Wrestling", "dc_events.htm#wrestling", "_top");
      NavMenuSub("Fan/Band Tables & Concourses", "dc_events.htm#Concourses", "_top");
      NavMenuSub("Awards Banquet", "dc_events.htm#Banquet", "_top");
      NavMenuSub("Live Performances", "dc_events.htm#Performances", "_top");
      NavMenuSub("Gaming", "dc_events.htm#Gaming", "_top");
      NavMenuSub("Video & Film Rooms", "dc_events.htm#Video", "_top");
      NavMenuSub("Walk of Fame", "dc_events.htm#Fame", "_top");
      NavMenuSub("Writer's Workshop", "dc_events.htm#Writers_Workshop", "_top");
      NavMenuSub("Services", "dc_events.htm#Services", "_top");
      NavMenuSub("Childcare", "dc_events.htm#Child", "_top");
      NavMenuSub("Handicap Access", "dc_events.htm#Handicap", "_top");
      NavMenuSub("Hospitality Suite", "dc_events.htm#Hospitality", "_top");
      NavMenuSub("Information Desk", "dc_events.htm#Information", "_top");
      NavMenuFinal();
   NavMenuSingle("Gaming", "http://gaming.dragoncon.net/index.html", "_top");
   NavMenuTop("ArtShow","Art Show", "con_art_show.htm", "_top");
      NavMenuSub("Art Show 2006", "con_art_show.htm", "_top");
      NavMenuFinal();
   NavMenuTop("Contests","Contests", "dc_contests.htm", "_top");
      NavMenuSub("Contests", "dc_contests.htm", "_top");
      NavMenuSub("Anime Music Videos", "dc_contests.htm#Anime", "_top");
      NavMenuSub("Art Show Awards", "dc_contests.htm#Art", "_top");
      NavMenuSub("Comic Book Quick Sketch", "dc_contests.htm#Comic", "_top");
      NavMenuSub("Dawn Look-Alike Contest", "dc_contests.htm#Dawn", "_top");
      NavMenuSub("Independent Short Film Festival", "dc_contests.htm#Film", "_top");
      NavMenuSub("Hallway Costume Contest", "dc_contests.htm#Hallway", "_top");
      NavMenuSub("Masquerade Costume Contest", "dc_contests.htm#Masq", "_top");
      NavMenuSub("Miss Klingon Empire Beauty Pageant", "dc_contests.htm#Klingon", "_top");
      NavMenuSub("Robot Battles", "dc_contests.htm#Robot", "_top");
      NavMenuSub("Role-Playing Round-Robin", "dc_contests.htm#Role", "_top");
      NavMenuFinal();
   NavMenuSingle("Charity", "dc_charity.htm", "_top");
   NavMenuTop("Pubs","Advertising/Publications/PR", "dc_publications.htm", "_top");
      NavMenuSub("Advertising", "http://publications.dragoncon.net/", "_top");
      NavMenuSub("Publications", "http://publications.dragoncon.net/", "_top");
      NavMenuSub("The Daily Dragon (Off-Site)", "http://www.dragoncon.net/dc/dailydragon/", "_Blank");
      NavMenuSub("Media Relations (Off-Site)", "http://www.scenic-city.com/media", "_Blank");
      NavMenuFinal();
   NavMenuTop("Links","Links/Photos", "dc_links.htm", "_top");
      NavMenuSub("Links/Photos", "dc_links.htm", "_top");
      NavMenuSub("Amazon Book Associate", "dc_links.htm#Amazon", "_top");
      NavMenuSub("Media Review Links", "dc_links.htm#media", "_top");
      NavMenuSub("Official Photo Galleries", "dc_links_photo05.htm", "_top");
      NavMenuSub("Fan Photo Galleries", "dc_links_fanphoto.htm", "_top");
      NavMenuSub("Other Links", "dc_links_other.htm", "_top");
      NavMenuFinal();
   NavMenuTop("Contact","Contact Us", "dc_contact.htm", "_top");
      NavMenuSub("Contact Us", "dc_contact.htm", "_top");
      NavMenuSub("Contacting Us", "dc_contact.htm#Contact", "_top");
      NavMenuSub("Design Team & Technical Notes", "dc_contact.htm#Web_Site", "_top");
      NavMenuSub("Teams & Departments", "dc_contact.htm#Teams", "_top");
      NavMenuSub("Administration/Facility Liaison", "dc_contact.htm#Admin", "_top");
      NavMenuSub("Convention Operations/Hyatt Liaison", "dc_contact.htm#Con_Ops", "_top");
      NavMenuSub("Finance/Marriott Liaison", "dc_contact.htm#Finance", "_top");
      NavMenuSub("Gaming Division", "dc_contact.htm#Gaming", "_top");
      NavMenuSub("Guest/Hospitality Division", "dc_contact.htm#Guest", "_top");
      NavMenuSub("Program Operations", "dc_contact.htm#Prog_Ops", "_top");
      NavMenuSub("Programming & Track Operations", "dc_contact.htm#Track", "_top");
      NavMenuSub("Relations Division", "dc_contact.htm#Relations", "_top");
      NavMenuFinal();
   NavMenuSingle("Store", "http://store.dragoncon.net/", "_blank");
   document.write("<hr>");
   document.write("<b>Google - Dragon*Con</b>");
   document.write("<FORM method=GET action=\"http://www.google.com/search\">" +
         "<input type=hidden name=ie value=UTF-8>" +
         "<input type=hidden name=oe value=UTF-8>" +
         "<INPUT TYPE=text name=q size=15 maxlength=255 value=\"\">" +
         "<INPUT type=submit name=btnG VALUE=\"Search\">" +
         "<input type=hidden name=domains value=\"www.dragoncon.org\">" +
      	"<input type=hidden name=sitesearch value=\"www.dragoncon.org\">" +
      	"</FORM>");
   document.write("<hr>");
   document.write("<b><i>Popular Quick Links:</i></b>");
      NavMenuSingle("Memberships", "dc_members.htm", "_top");
      NavMenuSingle("Current Guests", "dc_guests_list.php", "_top");
      NavMenuSingle("Programming Tracks", "es_tracks.htm", "_top");
      NavMenuSingle("Daily Dragon", "http://dailydragon.dragoncon.net", "_top");
   document.write("<hr>");
   NavMenuSingle("Convention Policies", "policies.htm", "_top");
   NavMenuSingle("Dragon*Con History", "history.htm", "_top");
   NavMenuSingle("Web Site Awards", "dc_news.htm#Awards", "_top");
   NavMenuSingle("Site Map", "site_map.htm", "_top");
   document.write("<hr>");
   document.write("<b><i>Navigation Tips:</i></b>  Clicking on items with right facing arrows will drop down a complete list of sub-menus for you to choose from.  Reloading, or changing pages will automatically collapse all open sub-menus.");
   initialize();
}