/*
USAGE:

<!-- javascript to insert page navigator -->
<script language="javascript" type="text/javascript" src="./javascript/local_navigator.js"></script>

<!-- set variables for the navigator links  -->
<script type="text/javascript" language="JavaScript">
	var navfontSize = -1;		// set relative or absolute font size
	var separaterSize = 3;		// set distance between links and pipe-separator
</script>

*/

document.write("<br clear=all \/>")

// paragraph tag and small font
document.write("<p class='spacing'><font size='" + navfontSize + "'>")

// Back to the TOP link
document.write("<a href='#top' " + 
"title='Back to the TOP'>")

document.write("<img align='middle' " +
"src='.\/images\/uparrow.gif' " + 
"border='0' " + 
"alt='Back to Top' " + 
"align='middle'>" +
"<\/a>")

for (a = 0; a < separaterSize; a++) {
document.write("&nbsp; ");// write spaces
}
document.write("| ") // write the pipe

for (a = 0; a < separaterSize; a++) {
document.write("&nbsp; ");// write spaces
}

document.write("<a name='Main Page'" + 
"href='http://www.wickcentral.com/home.html' target='_parent'" + 
"title='wickcentral.com'>" +
"Home<\/a>")

document.write("<\/font></p>")

document.write("<p class='spacing'> <\/p>")

document.close();// close layout stream
