// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

// message to show in non-IE browsers
var txt = "<img src='images/bookmark.gif' alt='' width='96' height='32' border='0' align='left' vspace='5' hspace='5'>";

// url you wish to have bookmarked
var url = location.href;

// caption to appear with bookmark
var who = "Super Cheap Car Rental -"+document.title

// do not edit below this line
// ===========================

var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
	   document.write('<div align=center')
   document.write('<A HREF="javascript:window.external.AddFavorite(url,who);" ');
   document.write('onMouseOver=" window.status=')
   document.write("txt; return true ")
   document.write('"onMouseOut=" window.status=')
   document.write("' '; return true ")
   document.write('">'+ txt + '</a>')
   	   document.write('</div')
}else{
  // txt += "  (Ctrl+D)"
  //document.write("<div align='right' style='font-size:9pt'>Please type (Ctrl+D) to Bookmark this page</div>")
}