// JavaScript Document

//var globalBaseSiteURL = "../emoryhr";

var globalHelpfulLinks = [
	"",
	"http://www.finadmin.emory.edu/index.html",
	"http://it.emory.edu/showdoc.cfm?docid=8129",
	"https://www.finance.emory.edu/index.cfm",
	"http://www.finadmin.emory.edu/internalaudit/IAD.html",
	"http://www.hr.emory.edu/eu/index.html",
	"http://www.hr.emory.edu/leavestatus",
	"http://www.ehso.emory.edu/",
	"https://www.admin.emory.edu/OBM/"
	];


function globalGoToHelpfulLink(select)
{
	var i = select.selectedIndex;
	select.selectedIndex = 0;
	if (i != 0) window.open(globalHelpfulLinks[i]);
}

