// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================
// message to show in non-IE browsers
var txt = "Bookmark Us!"
// do not edit below this line
// ===========================
var url = this.location;
var who = document.title;
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
document.write(''+ txt + '')
}else{
txt += " (Ctrl+D)"
document.write(txt)
}
//-->
this.location;
var who = document.title;
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
document.write(''+ txt + '')
}else{
txt += " (Ctrl+D)"
document.write(txt)
}
//-->