// (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 = "Bookmark This Site!"
var txt2 = "Bookmark this site!"
// url you wish to have bookmarked
var url = "http://www.logoitems.com";
// caption to appear with bookmark
var who = "Marketing Dynamics Inc - Creative Advertising Products"
// do not edit below this line
// ===========================
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
var url = "http://www.logoitems.com";
document.write(''+ txt + '')
}else{
txt += " (Ctrl+D)"
document.write(txt)
}