var linkhash = "#"
var href = ""
var title = ""
var id =""
var first="first"

var base=""
var i = 0
var basesize = 0

// first determine if we are on the web or on the disk
var url = window.location.protocol;
if (url = "file")
{
	base="c:/documents and settings/dgrawroc/my documents/my web sites/newmenu/";
	basesize = 9;
}
else
{
	base="dwgfamily.com/";
	basesize = 2;
}
	
// now check and see if we are at the top or down in the depths
href = document.location.href;
var offset = ""
var s = href.split("/");
for (i=basesize;i<(s.length-1);i++)
{
	offset = offset + "../";
}

// putting up the contact info
id = "vnav"
document.write("<div class=" + id + ">")

document.write("<h3>Feedback Options</h3>")

document.write("<ul>")

id="../phpbb/index.php"
document.write("<li><a href=" + offset + id +">")
document.write("Forum</a></li>")

document.write("</ul>")
document.write("</div>")

document.write("<h4>Making Comments</h4>")
document.write("<p>Whenever you find an error with an individual, source, or place please add a comment ")
document.write("into the appropriate section of the forum. I can then come behind later, update the database")
document.write("and then update the web site.")
document.write("</p>")

document.write("<p>I am trying very hard to cleanup the source citations. The current database has over 800 ")
document.write("individual sources. Many are merges from previous databases and I really need to make the ")
document.write("citations accurate.")
document.write("</p>")

