
function OpenComments (c) {
    window.open(c,
                    'comments',
                    'width=480,height=480,scrollbars=yes,status=yes');
}

function OpenTrackback (c) {
    window.open(c,
                    'trackback',
                    'width=480,height=480,scrollbars=yes,status=yes');
}

/******************************************************************
  breadcrumb navigation variable definitions
  
   Author: shafferm
   Date Created: 02/15/2000
*/


/*Assign the breadcrumbs navigation to a variable to pass to the navigation_Draw function*/
/*  Retreives the breadcrumbs information from variables set in the header of the HTML file. 


*******************************************************************/
var first_crumb="";
var second_crumb="";
var third_crumb="";
var fourth_crumb="";
var fifth_crumb="";
var crumbs="";
var non_link_code_A="<font class=\"breadcrumb\" face=\"Arial, Helvetica, sans-serif\" size=\"2\">&nbsp;";
var non_link_code_B="</font>";
var Link_code_A="<a href=\"";
var Link_code_B="\"class=\"breadcrumb\">";
var Link_code_C="</a><font face=\"Arial, Helvetica, sans-serif\" size=\"2\"> <font class=\"breadcrumb\">&#187;</font>&nbsp;</font>";


if (breadcrumb1 == null) var breadcrumb1 = "Home";
if (breadcrumb1_URL == null) var breadcrumb1_URL = "../index.php";
if (breadcrumb2 == null) var breadcrumb2 = "About the Author";
if (breadcrumb2_URL == null) var breadcrumb2_URL = "../marc.htm";
if (breadcrumb3 == null) var breadcrumb3 = "Family Gallery";
if (breadcrumb3_URL == null) var breadcrumb3_URL = "";
if (breadcrumb4 == null) var breadcrumb4 = "";
if (breadcrumb4_URL == null) var breadcrumb4_URL = "";
if (breadcrumb5 == null) var breadcrumb5 = "";
if (breadcrumb5_URL == null) var breadcrumb5_URL = "";



/* if the breadcrumb URL variable set in the HTML file has a value assigned, assemble the first crumb as a link
*/
if ( breadcrumb1_URL != "" || breadcrumb1_URL != null ) {first_crumb= Link_code_A + breadcrumb1_URL + Link_code_B + breadcrumb1 + Link_code_C
   
}
/* if the breadcrumb URL variable set in the HTML file does not have a value assigned, assemble the first crumb as  text
*/


if ( (breadcrumb1_URL == "" || breadcrumb1_URL == null) && (breadcrumb1 != "" || breadcrumb1 != null)) {var first_crumb= non_link_code_A + breadcrumb1 + non_link_code_B}




var crumbs = first_crumb




/* see comment above and execute for breadcrumb 2 */
if ( breadcrumb2_URL != "" || breadcrumb2_URL != null ) {second_crumb= Link_code_A + breadcrumb2_URL + Link_code_B + breadcrumb2 + Link_code_C
   
}
/* see comment above and execute for breadcrumb 2 */
if ( (breadcrumb2_URL == "" || breadcrumb2_URL == null) && (breadcrumb2 != "" || breadcrumb2 != null)) {var second_crumb= non_link_code_A + breadcrumb2 + non_link_code_B}




crumbs += second_crumb 


/* see comment above and execute for breadcrumb 3 */
if ( breadcrumb3_URL != "" || breadcrumb3_URL != null ) {third_crumb= Link_code_A + breadcrumb3_URL + Link_code_B + breadcrumb3 + Link_code_C
   
}
/* see comment above and execute for breadcrumb 3 */
if ( (breadcrumb3_URL == "" || breadcrumb3_URL == null) && (breadcrumb3 != "" || breadcrumb3 != null)) {var third_crumb= non_link_code_A + breadcrumb3 + non_link_code_B}


crumbs += third_crumb 


/* see comment above and execute for breadcrumb 4 */
if ( breadcrumb4_URL != "" || breadcrumb4_URL != null ) {fourth_crumb= Link_code_A + breadcrumb4_URL + Link_code_B + breadcrumb4 + Link_code_C
   
}
/* see comment above and execute for breadcrumb 4 */
if ( (breadcrumb4_URL == "" || breadcrumb4_URL == null) && (breadcrumb4 != "" || breadcrumb4 != null)) {var fourth_crumb= non_link_code_A + breadcrumb4 + non_link_code_B}


crumbs += fourth_crumb 


/* see comment above and execute for breadcrumb 5 */


if ( breadcrumb5_URL != "" || breadcrumb5_URL != null ) {fifth_crumb= Link_code_A + breadcrumb5_URL + Link_code_B + breadcrumb5 + Link_code_C
   
}

/* see comment above and execute for breadcrumb 5 */
if ( (breadcrumb5_URL == "" || breadcrumb5_URL == null) && (breadcrumb5 != "" || breadcrumb5 != null)) {var fifth_crumb= non_link_code_A + breadcrumb5 + non_link_code_B}


crumbs += fifth_crumb 

function navigation_Draw() {
/*Define variables for site banner*/
var bannermenuA="";
var mouseover="";

bannermenuA ="<table class=\"header\"width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"bordercolor=\"#000000\"bgcolor=\"#FFFFFF\"background=\"possible3.jpg\"><tr><td><a href=\"/\"><img class=\"bannerimage\"src=\"transparent.gif\" width=\"280px\" height=\"50px\" align=\"left\"></a></td><td><table width=\"100%\" border=\"0\" cellpadding=\"1\"cellspacing=\"0\"><tr><td width=\"100%\">&nbsp;&nbsp;</td><td width=\"90%\" align=\"right\"><form class=\"search\" method=\"post\" action=\"/droppings/mt-search.cgi\"><input type=\"text\"class=\"form\" name=\"search\" size=\"19\"><input class=\"button-search\" type=\"submit\" name=\"search\" value=\"Search\"></form></td></tr><tr><td valign=\"bottom\"></td><td nowrap align=\"right\">";
mouseover="</td></tr></table></td></tr><tr><td height=\"4\" bgcolor=\"#004600\"></td></tr></table>";
/* write the banner with breadcrumbs
*/
document.write(bannermenuA  + crumbs + mouseover)
//document.write( bannermenuD  + crumbs + bannermenuE);
}
