<!--
var url="http://zSuperStore.com";
var title="Z-SuperStore - Your online shopping mall";

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 Z-SuperStore.");
    }
  }
}
//-->