/*
	WELCOME! This simple JavaScript file holds several variables that are utilized
	by the templates to make your life as a Web designer infinitely simpler. It 
	contains several 'global variables' that will be read by every page in your site.
	
	Enter the information in the appropriate places, and it will auto*magically* 
	appear on every page on your entire Web site!
	
	EDIT ONLY what's inside the quotation marks. Be careful not to erase any
	quotation marks or semicolons - they're vitally important.
*/

// The name of the direct parent organization to which this page belongs.
// e.x. Admissions: ORG_PARENT = "ADMISSIONS";
// e.x. Microbiology: ORG_PARENT = "BIOLOGY";
var ORG_PARENT = "Office of Computing &amp; Communications Services";
// Internet Web address for this organizational parent's home page.
var ORG_PARENT_URL = "http://jasper.ts.odu.edu/APPS/OCCS/prodchange.nsf/homePage?OpenForm";

// This is the name of this page's highest level organizational parent.
// e.x. Admissions: ORG_GRANDPARENT = "INSTITUTIONAL ADVANCEMENT";
// e.x. Microbiology: ORG_GRANDPARENT = "COLLEGE OF SCIENCES";
var ORG_GRANDPARENT = "Administration &amp; Finance";
// Internet Web address of this page's highest level organizational parent.
var ORG_GRANDPARENT_URL = "http://www.odu.edu/home/admin/finance.html";

// What is this site's home page name?
// e.x. Admissions: HOME_PAGE_NAME = "UNDERGRADUATE ADMISSIONS HOME";
// e.x. Prof. John Doe: HOME_PAGE_NAME = "PROFESSOR JOHN DOE";
var HOME_PAGE_NAME = "Web Developer's Resources";
// Internet Web address of this site's home page
var HOME_PAGE_URL ="index.shtml";

// What phone number do you want on all the pages of this site?
var PHONE = "(757) 683-3189";
// What fax number do you want on all the pages of this site?
var FAX = "(757) 683-5155";

// What is the name of the person who will maintain this site?
var WEBMASTER_NAME = "ODU Web Admin";
// Who should be notified of problems with this site?
// NOTE: enter ONLY the part of the email address BEFORE the at sign
// e.x. John Doe: WEBMASTER_EMAIL_ID = "jdoe";
var WEBMASTER_EMAIL_ID = "webadmin"
