// open the box
function redirect(obj){
  Shadowbox.open({
    content: '<div class="disclaimer"><h2>Disclaimer</h2><p>'+obj.title+'</p><p><a href="'+obj.href+'">click here</a></p></div>',
    player:  "inline",
    width:   350,
    height:  350
  });
  return false;
}
// close the box
function close(obj){
  setTimeout('obj.close()',1000)
}
