/*
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 = 1;		// set distance between links and pipe-separator
</script>
*/

	var navfontSize = 0;		// set relative or absolute font size
	var separaterSize = 2;		// set distance between links and pipe-separator

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

// 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'>")	// to link

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
}

/* topic */
document.write("<a name='Main Page'" + 
"href='index.html' target='_parent'" + 
"title='OTIS'>" +
"<img src='./images/home.jpg' align='middle' alt='Home' border='0'>" +
"<\/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
}

/* topic */
document.write("<a name='Contents'" + 
"href='page1.html' target='_parent'" + 
"title='OTIS'>" +
"Contents<\/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
}

/* topic */
document.write("<a name='Introduction'" + 
"href='page2.html' target='_parent'" + 
"title='OTIS'>" +
"Introduction<\/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
}

/* topic */
document.write("<a name='Web Services'" + 
"href='page3.html' target='_parent'" + 
"title='OTIS'>" +
"Web Services<\/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
}

/* topic */
document.write("<a name='Scheduling Tracking and Reporting'" + 
"href='page4.html' " + 
"title='OTIS'>" +
"Scheduling, Tracking and Reporting<\/a>")


/* SPLIT TOPICS */
document.write("<br> <br>");// break

/* topic */
document.write("<a name='Hardware, Network and Security'" + 
"href='page5.html' target='_parent'" + 
"title='OTIS'>" +
"Hardware, Network and Security<\/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
}

/* topic */
document.write("<a name='Conclusion'" + 
"href='page6.html' target='_parent'" + 
"title='OTIS'>" +
"Conclusion<\/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
}

/* topic */
document.write("<a name='Bibiliography'" + 
"href='end.html' target='_parent'" + 
"title='OTIS'>" +
"Bibiliography<\/a>")

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

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

document.close();// close layout stream
