/**
 * RGI EXIT
 */

var destination = '';

/* CAPTURE USER ACTIVITY */
//a to external site
/*
$(document).ready(function() { //
	//captures every link click
   $('a').bind('click', function(e){
		if ($(this).attr('href').match('goreadgreen.com')==null && $(this).attr('href').match('zinio.com')==null) {
   			alert($(this).attr('href'));
			destination=$(this).attr('href'); //store destination url
			tb_show("other","http://goreadgreen.com/popup/?TB_iframe=true&height=451&width=685"); //open lightbox
			return false;
		}
	});
});
*/
//page unload
var block = false;
function exiter() {
	if (!block) {
		//alert();
		//my_window = window.open("http://goreadgreen.com/popup", "rgi", "status=1, width=350, height=250");
	}
}
//window.onunload = exiter;

//on close lightbox from single.php


//on certain number of page views
 
 /* OVERWRITE THICKBOX CLOSE FUNCTION */
 function tb_remove(){
	if( $("input[name='s_isssn']").val() ){ //is issn, so on subscribe
		tb_show("","http://goreadgreen.com/popup/?height=451&width=685");
		return false;
	} else {
		$("#TB_imageOff").unbind("click");
		$("#TB_closeWindowButton").unbind("click");
		$("#TB_window").fadeOut("fast",function(){$('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});
		$("#TB_load").remove();
		if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
			$("body","html").css({height: "auto", width: "auto"});
			$("html").css("overflow","");
		}
		document.onkeydown = "";
		document.onkeyup = "";
		return false;
	}
}