

var GB_ANIMATION = true;
$(document).ready(function() {
  $("a.pop").click(function(){
    var t = this.title || this.href;
    var makeHeight = $(window).height() - 90;
    var makeWidth = 800;
    GB_show(t,this.href,makeHeight,makeWidth);
    return false;}
  );
  $("a.pop2").click(function(){
    var t = this.title || this.href;
    var makeHeight = $(window).height() - 90;
    var makeWidth = 1000;
    GB_show(t,this.href,makeHeight,makeWidth);
    return false;}
  );
  $("a.pop3").click(function(){
    var t = this.title || this.href;
    var makeHeight = $(window).height() - 90;
    var makeWidth = 900;
    GB_show(t,this.href,makeHeight,makeWidth);
    return false;}
  );
});