/**/function Bookmark(Title){
  if ((navigator.appVersion.indexOf("MSIE") > 0) && (parseInt(navigator.appVersion) >= 4)) {
 window.external.AddFavorite(location.href, unescape(Title));
  }
}
function printpage() {
window.print();
}

function isInserted(look) {
if (look.value == "" ||
look.value == null)
return false;
else return true;
}
function isReady(form) {
if (isInserted(form.query) == false) {
alert ("Please enter something to search for then click 'Go' again!");
form.query.focus();
return false;
}
return true;
}
