// JavaScript Document

var globalBaseSiteURL = "../emoryhr";

var globalHelpfulLinks = [
	"",
	"http://www.emory.edu/dining/cardfacstaff.php",
	"http://www.epcs.emory.edu/park/",
	"https://www.finance.emory.edu/external/deptpages/pay/index.cfm",
	"https://www.finance.emory.edu/index.cfm",
	"http://www.hr.emory.edu/eu/employeestoolkit/otherresources/employmentverification/index.html",
	"http://it.emory.edu",
	"http://map.emory.edu"
	];

var ManagerHelpfulLinks = [
	"",
	"managerstoolkit/index.html",
	"managerstoolkit/employment-verification/index.html",
	"managerstoolkit/index.html",
	"managerstoolkit/index.html"];

function globalGoToHelpfulLink(select)
{
	var i = select.selectedIndex;
	if (i != 0) window.open(globalHelpfulLinks[i]);
}

function ManagerGoToHelpfulLink(select)
{
	var i = select.selectedIndex;
	if (i != 0) location.href = globalBaseSiteURL + ManagerHelpfulLinks[i];
}