// Various scripts for use in the site
// File name:    "jsUtil.js"


// Script name:  "msgNoRSVP()"
// To display an alert saying that No RSVP is necesssary
//**********************************************
// parameters/requirements:
// (1) none
//**********************************************
    function msgNoRSVP()
    {
      window.alert("No RSVP is Needed - Just Show Up With a Smile");
    }  //end function slideTimer()
	
// Script name:  "msgContact()"
// To display an alert saying to contact us for more info
//**********************************************
// parameters/requirements:
// (1) none
//**********************************************
    function msgContact()
    {
      window.alert("Contact Tripp for more details on the shuttle from O'Hare");
    }  //end function slideTimer()
	

// Script name:  "msgDirRSVP()"
// To display an alert saying that directions to site are not
//   available unless RSVP is received
//**********************************************
// parameters/requirements:
// (1) none
//**********************************************
    function msgDirRSVP()
    {
      window.alert("You must RSVP first to get directions to the site.");
    }  //end function slideTimer()
	
// Script name: "addBookmark(site, name)"
// To add the site/page address to the user's bookmark listings
//**********************************************
//parameters/requirements:
// (1) site: the url of the bookmark
// (2) name: the title/name of the bookmark itself
//**********************************************
    function addBookmark(site, name) 
	{
	   if (document.all) 
	     window.external.AddFavorite(url, title);
	   else if (window.sidebar) 
	     window.sidebar.addPanel(title, url, '');
	}   //end function addBookmark()
	
	
	
	function msgMoreInfo()
    {
      window.alert("More info to come soon!");
    }  //end function slideTimer()