function WriteMenu()
{
	document.write("<div id=\"divNav\">");
	document.write("<ul id=\"nav\" class=\"large\">");
	document.write("<li><a href=\"index.html\">home</a></li>");
	document.write("<li><a href=\"hypnotherapy.html\">hypnotherapy</a></li>");
	document.write("<li><a href=\"reiki-health.html\">reiki</a></li>");
	document.write("<li><a href=\"books.html\">book store</a></li>");
	document.write("<li><a href=\"contact.html\">contact me</a></li>");
	document.write("<li><span><a onclick=javascript:openlink(\"http://tomhornyak.blogspot.com\")>blog</a></span></li>");
	document.write("<li><span><a onclick=javascript:openlink(\"http://www.hypnosis.edu/hypnotherapists/tom-hornyak\")>AHA Bio</a></span></li>");
	document.write("</ul>");
	document.write("</div>");
}

function WriteMenuHT()
{
	document.write("<div id=\"divNav\">");
	document.write("<ul id=\"nav\" class=\"large\">");
	document.write("<li><a href=\"index.html\">home</a></li>");
	document.write("<li><a href=\"hypnotherapy.html\">hypnotherapy</a></li>");
	document.write("<li><a href=\"reiki-health.html\">reiki</a></li>");
	document.write("<li><a href=\"books.html\">book store</a></li>");
	document.write("<li><a href=\"contact.html\">contact me</a></li>");
	document.write("<li><span><a onclick=javascript:openlink(\"blog/index.php\")>spiritual blog</a></span></li>");
	document.write("<li><span><a onclick=javascript:openlink(\"http://www.hypnosis.edu/hypnotherapists/tom-hornyak\")>AHA Bio</a></span></li>");
	document.write("</ul>");
	document.write("</div>");
}

function CopyrightString(divFlag)
{
	var str;
	if (divFlag)
	{
		str = "<div id=\"footer\"><br />";
	}
	else
	{
		str = "<div><br />";
	}
	str += "Copyright &copy; 2006-2011 Thomas F. Hornyak, All rights reserved.<br />";
	str += "This web site and its content cannot be reproduced<br />";
	str += "by any means, in part or in whole, without the express<br />";
	str += "written permission of the author.";
	str += "</div>";
	return str;
}


function WriteCopyright(divFlag)
{
	document.write( CopyrightString(divFlag) );
}

var LinkWindow
function openlink(path)
{
	if (LinkWindow != null)
	{
		LinkWindow.close();
	}
	LinkWindow=window.open(path, "newwin");
	LinkWindow.focus();
	self.name="main";
}


