// 
// Copyright (c) 2002. All rights reserved.
// 
// This computer program is protected by copyright law and international treaties.
// Unauthorized reproduction or distribution of this program, or any portion of it,
// may result in severe civil and criminal penalties, and will be prosecuted to the
// maximum extent possible under the law.
// 
// Author: Rob Allen
// Last Modified: March 14, 2001
// 

	function WelcomePage(title,navContainer) 
	{
		this.nav = navContainer;
		this.pageTitle = title;
	}

	WelcomePage.prototype.Draw = function()
	{
		document.write("<div style='height: 100%; vertical-align: middle'>")
		document.write("<table CLASS=clsMenuTable style='height: 100%; width: 100%' bordercolordark='443f3c' bordercolorlight='#887f7c'>");
		document.write("<tr>");
		document.write("<td CLASS=clsHeaderBar COLSPAN=2>"+this.pageTitle+"</td>");
		document.write("</tr>");
		document.write("<tr>");
		document.write("<td CLASS=clsLinks valign=top>");
		document.write("<br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ >");
	
		for (var i = 0; i < this.nav.length; i++) {
			document.write(this.nav[i].getHTML()+"\n");
		} // for
		
		document.write("<br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ ><br/ >");
		document.write("</td>");
		
		document.write("<td WIDTH=20PX>");
		document.write("</td>");
		document.write("</tr>");
		document.write("</table>");
		document.write("</div>");
	} // WelcomePage.prototype.Draw()
	
	
	function DisplayPage(thePage) 
	{
		document.getElementById("pageFrame").src=thePage;
		return true;
	} // DisplayPage()	
	

