 var urlAddress = location.href;
 var pageName = document.title;

 function AddToFavorites()
 {
   if (window.sidebar) {
     if (navigator.userAgent.indexOf("Firefox")!=-1) {
       window.sidebar.addPanel(document.title, self.location,"");
     } else {
       alert("Sorry! Your browser doesn't support this function.");
     }
   } else if (window.external) {
     window.external.AddFavorite(self.location, document.title);
   } else if (document.layers) {
     window.alert("Please click OK then press Ctrl+D to create a bookmark");
   } else  {
     alert("Sorry! Your browser doesn't support this function.");
   }
 }

 function EmailPage()
 {
   location.href='mailto:?SUBJECT=Prime Seat Tickets:'+escape(document.title)+'&BODY='+escape(location.href)
 }

 function PrintPage()
 {
   window.print();
 }
