function GObj(r)
{
  return document.getElementById(r);
}

function SetFocus(r)
{
  var o = GObj(r);
  if (o != null) o.focus();
}
function printIt(){
  alert("Click right mouse on image and select menu Print Image!");
}

