// JavaScript Document

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function confirm_location(url) {
	var msg    =    "You are now leaving ARAMARK's site and entering a third-party site. \n\n"
                   +"The link has been provided for your convenience only and ARAMARK makes no representation regarding the completeness, timeliness or accuracy of the information provided. \n\n"
                   +"The views expressed on this site do not necessarily represent the views of ARAMARK.";

    if(url == '') {
        return;
    }

    if(confirm(msg)) {
        location.href = url;
    }
}
