<!--
function AddToFaves_hp(description){
if (typeof description == 'undefined') {
description = "MovieTyme"
}

 var is_4up = parseInt(navigator.appVersion);
 var is_mac   = navigator.userAgent.toLowerCase().indexOf("mac")!=-1;
 var is_ie   = navigator.userAgent.toLowerCase().indexOf("msie")!=-1;
 var thePage = location.href;
 if (thePage.lastIndexOf('#')!=-1)
  thePage = thePage.substring(0,thePage.lastIndexOf('#'));
 if ((is_ie && is_4up && !is_mac)) {
  //window.external.AddFavorite(thePage,document.title + '.com ');
  window.external.AddFavorite(thePage,'Movietyme.com ');
 } else if (is_ie || document.images) {
  booker_hp = window.open('bookmark.php','booker_','width=400,height=100,left=50,top=50');
 //booker_hp.focus();
 return false;
 }
 }
//-->
