
//Establish location of main menu links in one file.
//These links are used on almost every page, so
//it would be a maintenance nightmare if I did not
//do this.

function init()
	{
	commonlink();
	namelinks();
	}
function commonlink()
	{
	this.commonlinkNAME="";
	this.commonlinkURL="";
	this.commonlinkTITLE="";
	}
var welcomeURL = new commonlink();
var topURL = new commonlink();
var mainURL = new commonlink();
var admissionsURL = new commonlink();
var academicsURL = new commonlink();
var alumniURL = new commonlink();
var studentlifeURL = new commonlink();
var administrationURL = new commonlink();
var pretheologateURL = new commonlink();
var publicationsURL = new commonlink();
var developmentURL = new commonlink();
var conferencesURL = new commonlink();
var journeysURL = new commonlink();
var libraryURL = new commonlink();
var maildirectoryURL = new commonlink();
var searchURL = new commonlink();
var aboutURL = new commonlink();
var backURL = new commonlink();
var spring2kURL = new commonlink();
var calendarURL = new commonlink();
var webadvisingURL = new commonlink();



function namelinks() {
//Top URL Resource
	topURL.commonlinkNAME="Home";
	topURL.commonlinkURL="./index.htm";
	topURL.commonlinkTITLE="Home";
	
//Presidents Welcome URL Resource
	welcomeURL.commonlinkNAME="President's Welcome";
	welcomeURL.commonlinkURL="./welcome.html";
	welcomeURL.commonlinkTITLE="President's Welcome";

//New URL Resource
	mainURL.commonlinkNAME="University News";
	mainURL.commonlinkURL="./index3.html";
	mainURL.commonlinkTITLE="University News";

//admissions URL resources
	admissionsURL.commonlinkNAME="Admissions";
	admissionsURL.commonlinkURL="http://developer.franciscan.edu/Admissions/";
	admissionsURL.commonlinkTITLE="Enrollment&nbsp;Services";

//academics URL resources
	academicsURL.commonlinkNAME="Academics";
	academicsURL.commonlinkURL="./academics.html";
	academicsURL.commonlinkTITLE="Academic Departments and Programs";

//alumni URL resources
	alumniURL.commonlinkNAME="Alumni";
	alumniURL.commonlinkURL="http://www2.franciscan.edu/alumni/";
	alumniURL.commonlinkTITLE="Alumni";
	
//studentlife URL resources
	studentlifeURL.commonlinkNAME="Student Life";
	studentlifeURL.commonlinkURL="./StudentLife.html";
	studentlifeURL.commonlinkTITLE="Student Life";

//administration URL resources
	administrationURL.commonlinkNAME="Administration";
	administrationURL.commonlinkURL="./administration.html";
	administrationURL.commonlinkTITLE="Administration";

//pretheologate URL resources
	pretheologateURL.commonlinkNAME="Pre-Theologate";
	pretheologateURL.commonlinkURL="./Content/pretheologate/index.htm";
	pretheologateURL.commonlinkTITLE="Administration";

//publications URL resources
	publicationsURL.commonlinkNAME="Media/Publications";
	publicationsURL.commonlinkURL="./publications.html";
	publicationsURL.commonlinkTITLE="University Publications and Media";

//development URL resources
	developmentURL.commonlinkNAME="Advancement/Donations";
	developmentURL.commonlinkURL="./development.html";
	developmentURL.commonlinkTITLE="Development/Office of University Advancement";

//conferences URL resources
	conferencesURL.commonlinkNAME="Conferences/Events";
	conferencesURL.commonlinkURL="http://www.franciscan.edu/conferences.htm";
	conferencesURL.commonlinkTITLE="Conferences/Events";

//journeys URL resources
	journeysURL.commonlinkNAME="Journeys/Pilgrimages";
	journeysURL.commonlinkURL="./Journeys/journeys.htm";
	journeysURL.commonlinkTITLE="Pilgrimages";

//library URL resources
	libraryURL.commonlinkNAME="Library";
	libraryURL.commonlinkURL="http://www2.franciscan.edu/jp2/";
	libraryURL.commonlinkTITLE="Library";
		
//maildirectory URL resources
	maildirectoryURL.commonlinkNAME="Mail Directory";
	maildirectoryURL.commonlinkURL="./email.html";
	maildirectoryURL.commonlinkTITLE="Mail Directory";

//search URL resources
	searchURL.commonlinkNAME="Search";
	searchURL.commonlinkURL="./search.htm";
	searchURL.commonlinkTITLE="Search";

//About URL resources
	aboutURL.commonlinkNAME="About Us";
	aboutURL.commonlinkURL="./about.html";
	aboutURL.commonlinkTITLE="About Franciscan University";

//Back URL
	backURL.commonlinkNAME="Back";
	backURL.commonlinkURL="javascript: history.back()";
	backURL.commonlinkTITLE="Back";

//spring2k URL resources
	spring2kURL.commonlinkNAME="Spring 2000";
	spring2kURL.commonlinkURL="./academics/spring2k/spring2k.html";
	spring2kURL.commonlinkTITLE="academics:</B> Spring Semester 2000<B>";
	spring2kURL.commonlinkROOT="../../";

//Calendar URL resources
	calendarURL.commonlinkNAME="University Calendar";
	calendarURL.commonlinkURL="http://domino.franciscan.edu/fuscal0203.nsf/738cb93ae2e1b7f8852564b5001283e2?OpenView&Grid=4&Date=2003-01-14";
	calendarURL.commonlinkTITLE="University Calendar";
	calendarURL.commonlinkROOT="";

//web advivising URL Resource
	webadvisingURL.commonlinkNAME="Campus Web";
	webadvisingURL.commonlinkURL="http://registration.franciscan.edu/cgi-bin/LOGIN.MBR/LOGIN?PREFIX=STU";
	webadvisingURL.commonlinkTITLE="Campus Web";
}
function test()	
	{
	alert("The Script External Script Ran - Commonlink messages "+spring2kURL.commonlinkROOT);
	}
