<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// Mint green: CCFFCC   Dusty Purple-dk:  666699   Dusty Purple-lt:  9999CC

// MINT GRN:  F0FFFF   MED-BLU-GRN:  9AC0CD  DK-B-G:  607B8B

var color		= "607B8B"	// HEADER BACKGROUND COLOR
var stripcolor		= "9AC0CD"	// HEADER MENU STRIPE COLOR
var flashheight		= "110"		// HEIGHT OF THE FLASH (IN PIXELS)
var flashwidth		= "600"		// WIDTH OF THE FLASH (IN PIXELS)
var date 		= "yes" 	// SHOW DATE



document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#'+color+'"><tr><td width="125">');
document.write('<img src="picts/spacer.gif" HEIGHT="10" WIDTH="125"><br>');
document.write('<td align="left" valign="top" bgcolor="#607C8A"><img border="0" src="images/bnr_deanofpeace2.jpg" width="617" height="108"><br>');
document.write('</td><td width="10">');
document.write('&nbsp;<br>');
document.write('</td></tr><tr><td bgcolor="#'+stripcolor+'" colspan="2" height="20" align="right">');
document.write('<TABLE cellpadding="0" cellspacing="4" border="0"><tr><td><br>');


// START HORIZONTAL LINKS - COPY AND PASTE THE NEXT 3 LINES TO ADD A LINK

document.write('</td><td>');
document.write('<a href="http://www.deanofpeace.com/ask_dean.htm" class="menuhorz">Ask / Contact</a>');

document.write('</td><td>');
document.write('<a href="http://www.deanofpeace.com/faq-home.htm" class="menuhorz">FAQ\'s</a>');

// document.write('</td><td>');
// document.write('<a href="http://www.deanofpeace.com/peace+boards.htm" class="menuhorz">Peace Board\'s</a>');

document.write('</td><td>');
document.write('<a href="http://www.deanofpeace.com/worth+repeating.htm" class="menuhorz">Worth Repeating</a>');

document.write('</td><td>');
document.write('<a href="http://www.deanofpeace.com/index.html" class="menuhorz">Home</a>');

document.write('</td></tr></table>');
document.write('</td><td width="10" bgcolor="#'+stripcolor+'">');
document.write('&nbsp;<br>');
document.write('</td></tr></table>');


// START DATE SCRIPT

// COPYRIGHT 2004 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

   if (date == "yes") {
document.write('<div id="date-location">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"headermenu\"><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}



//  End -->