// Files for the Previous and Next Links

arrayLinks = new Array();
// ('menugroup','url_of_current_page','url_of_previous_page','Previous Text','url_of_next_page','Next Text' 
arrayLinks[0]= new Array(":ToggleMenu('home')", "/help/Tutorial/index.html", "#","Home", "/help/Tutorial/QuickStart/overview.htm","QuickStart");

arrayLinks[1]= new Array("ToggleMenu('qs')", "/help/Tutorial/QuickStart/overview.htm", "#","QuickStart", "/help/Tutorial/QuickStart/process.htm","Process");
arrayLinks[2]= new Array("", "/help/Tutorial/QuickStart/process.htm", "/help/Tutorial/QuickStart/overview.htm","QuickStart", "/help/Tutorial/QuickStart/tools.htm","Features");
arrayLinks[3]= new Array("", "/help/Tutorial/QuickStart/tools.htm", "/help/Tutorial/QuickStart/process.htm","Process", "/help/Tutorial/QuickStart/programmer.htm","Programmer Role");
arrayLinks[4]= new Array("", "/help/Tutorial/QuickStart/programmer.htm", "/help/Tutorial/QuickStart/tools.htm","Features", "/help/Tutorial/QuickStart/coord.htm","Coordinator Role");
arrayLinks[5]= new Array("", "/help/Tutorial/QuickStart/coord.htm", "/help/Tutorial/QuickStart/programmer.htm","Programmer Role", "/help/Tutorial/QuickStart/admin.htm","Administrator Role");
arrayLinks[6]= new Array("", "/help/Tutorial/QuickStart/admin.htm", "/help/Tutorial/QuickStart/coord.htm","Coordinator Role", "/help/Tutorial/Life/overview.htm","Life of a Program");

arrayLinks[7]= new Array("ToggleMenu('lop')", "/help/Tutorial/Life/overview.htm", "#", "Home", "/help/Tutorial/Life/brainstorm.htm", "Brainstorming");
arrayLinks[8]= new Array("", "/help/Tutorial/Life/brainstorm.htm", "/help/Tutorial/Life/overview.htm", "Home", "/help/Tutorial/Life/register.htm", "Register Program");
arrayLinks[9]= new Array("", "/help/Tutorial/Life/register.htm", "/help/Tutorial/Life/brainstorm.htm", "Brainstorming", "/help/Tutorial/Life/approve.htm", "Approve Program");
arrayLinks[10]= new Array("", "/help/Tutorial/Life/approve.htm", "/help/Tutorial/Life/register.htm", "Register Program", "/help/Tutorial/Life/implement.htm", "Implement Program");
arrayLinks[11]= new Array("", "/help/Tutorial/Life/implement.htm", "/help/Tutorial/Life/approve.htm", "Approve Program", "/help/Tutorial/Life/assess.htm", "Assessment");
arrayLinks[11]= new Array("", "/help/Tutorial/Life/assess.htm", "/help/Tutorial/Life/implement.htm", "Implement Program", "/help/Tutorial/Life/reports.htm", "Reports");
arrayLinks[12]= new Array("", "/help/Tutorial/Life/reports.htm", "/help/Tutorial/Life/assess.htm", "Assessment", "#", "Next");

arrayLinks[13]= new Array("ToggleMenu('comm')", "/help/Tutorial/Comm/overview.htm", "#", "Home", "/help/Tutorial/Comm/emailreminder.htm", "Email Reminders");
arrayLinks[14]= new Array("", "/help/Tutorial/Comm/emailreminder.htm", "/help/Tutorial/Comm/overview.htm", "Home", "/help/Tutorial/Comm/bulkemail.htm", "Bulk Email");
arrayLinks[15]= new Array("", "/help/Tutorial/Comm/bulkemail.htm", "/help/Tutorial/Comm/emailreminder.htm", "Email Reminders", "", "");

arrayLinks[16]= new Array("ToggleMenu('tools')", "/help/Tutorial/reporting.htm", "#", "Home", "", "");




arrayLinks[17]= new Array("ToggleMenu('tabs')", "/help/Tutorial/Tabs/information.htm", "/help/Tutorial/Tabs/information.htm","Previous", "/help/Tutorial/Tabs/LearningOutcomes.htm", "Next");
arrayLinks[18]= new Array("home", "/help/Tutorial/Tabs/LearningOutcomes.htm", "/help/Tutorial/Tabs/information.htm","Previous", "/help/Tutorial/Tabs/Timeline.htm", "Next");
arrayLinks[19]= new Array("home", "/help/Tutorial/Tabs/Timeline.htm", "/help/Tutorial/Tabs/LearningOutcomes.htm","Previous", "/help/Tutorial/Tabs/Evaluation.htm", "Next");
arrayLinks[20]= new Array("home", "/help/Tutorial/Tabs/Evaluation.htm", "/help/Tutorial/Tabs/Timeline.htm", "Previous","#", "Next");


arrayLinks[21]= new Array("ToggleMenu('scp')", "/Sales/home.htm", "/Sales/home.htm","Previous", "/Sales/home.htm", "Next");
arrayLinks[22]= new Array("", "/Sales/home.htm", "/Sales/home.htm","Previous", "/Sales/home.htm", "Next");
arrayLinks[23]= new Array("", "/Sales/scp_definition.htm", "/Sales/home.htm","Previous", "/Sales/scp_pricing.htm", "Next");
arrayLinks[24]= new Array("", "/Sales/scp_pricing.htm", "/Sales/scp_definition.htm", "Previous","#", "Next");

var togglemenu = 'title=next '
var previous = 'javascript:history.go(-1);';
var next ='#';
var plink = 'Previous';
var nlink ='';

for (i=0; i<arrayLinks.length; i++) {
	if (location.pathname == arrayLinks[i][1]) {
		previous = arrayLinks[i][2];
		plink = arrayLinks[i][3];
		next = arrayLinks[i][4];
		nlink = arrayLinks[i][5];
		if (arrayLinks[i][0]='none') {
			togglemenu='';
		}
			else {
			togglemenu=arrayLinks[i][0];
			}
	}

}