// message to show in non-IE browsers
var txt = "Click Here to BOOKMARK US!"

// url you wish to have bookmarked
var url = "http://www.EmulaZone.com/";

// caption to appear with bookmark
var who = "EmulaZone.com - Serving the Scene Since 1997! 1000'S OF DOWNLOADS!"

// do not edit below this line
// ===========================

var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
   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>')
}else{
   txt += "  (Ctrl+D)"
   document.write(txt)
}