<!--
var url="http://sexy-lingerie-shop.com";
var title="Sexy Lingerie Shop";

function addtofavorites(){
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
    window.external.AddFavorite(url,title);
  } else {
    if(navigator.appName == "Netscape") {
      alert("Sorry, add to favorites only works in Internet Explorer.\n\nSince you are using Netscape you will need to use \nCTRL + D to bookmark Sexy Lingerie Shop.");
    }
  }
}
//-->