/* Greybox Redux
 * Required: http://jquery.com/
 * Written by: John Resig
 * Based on code by: 4mir Salihefendic (http://amix.dk)
 * License: LGPL (read more in LGPL.txt)
 */

var GB_DONE = false;
var GB_HEIGHT = 600;
var GB_WIDTH = 740;

function GB_show(caption, url, height, width) {
    agree=confirm("You are leaving our website and linking to an alternate website not operated by us. We are not responsible for the content of the alternate website and do not represent either the third party or the current website user if the two enter into a transaction. Privacy and security policies may differ from those practiced by us. \n\nIf you click \"OK\", an external website that is owned and operated by a third-party will be opened \nin a new browser window. \n\nIf you click \"CANCEL\" you will be returned to our website.");
	if (agree){
  GB_HEIGHT = height || 600;
  GB_WIDTH = width || 740;
  if(!GB_DONE) {
    $(document.body)
      .append("<div id='GB_overlay'></div><div id='GB_window'><div id='GB_caption'></div>"
        + "<div id='GB_printme'>click here for <strong>printable version</strong></div>" + "<div id='GB_closeme'>close window <b style='margin-left: 5px; padding: 2px 5px 2px 5px; background-color: white; color: black;'>x</b></div></div>");
    $("#GB_closeme").click(GB_hide);
    $("#GB_overlay").click(GB_hide);
	$("#GB_printme").click(GB_print);
    $(window).resize(GB_position);
    GB_DONE = true;
  }

  $("#GB_frame").remove();
  $("#GB_window").append("<iframe id='GB_frame' name='GB_frame' onload=\"$('#GB_frame').css({background:'white'});\" src='"+url+"'></iframe>");

  $("#GB_caption").html(caption);
  $("#GB_overlay").show();
  GB_position();

  if(GB_ANIMATION)
    $("#GB_window").slideDown("slow");
  else
    $("#GB_window").show();
	}
}

function GB_hide() {
  $("#GB_window,#GB_overlay").hide();
}

function GB_print() {
	window.open(thishref);
}

function GB_position() {
  var de = document.documentElement;
  var w = self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
  var h = self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
  GB_WIDTH = w - 100;
  GB_HEIGHT = h - 30;
  $("#GB_window").css({width:GB_WIDTH+"px",height:GB_HEIGHT+"px",
    left: ((w - GB_WIDTH)/2)-10+ "px" });
  $("#GB_frame").css("height",GB_HEIGHT - 32 +"px");
  scrollTo(0,0);

}


function GB_position_orig() {
  var de = document.documentElement;
  var w = self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
  $("#GB_window").css({width:GB_WIDTH+"px",height:GB_HEIGHT+"px",
    left: ((w - GB_WIDTH)/2)+"px" });
  $("#GB_frame").css("height",GB_HEIGHT - 32 +"px");

}

function GG_show(caption, url, height, width) {
    agree = confirm("You are leaving our website and linking to an alternate website not operated by us. We are not responsible for the content of the alternate website and do not represent either the third party or the current website user if the two enter into a transaction. Privacy and security policies may differ from those practiced by us. \n\nIf you click \"OK\", an external website that is owned and operated by a third-party will be opened \nin a new browser window. \n\nIf you click \"CANCEL\" you will be returned to our website.");
    if (agree) {
        x=window.open(url,caption);
    }
}