window.onunload = metrics_end;

// Metrics tracking for pathing, dwell time and drop off
//failing in IE, we need to pause execution before end
function metrics_end() {
	if(document.images['metrics']) {
		var endMetrics = new Image();
		endMetrics.src = document.images['metrics'].src.replace(/(page_id=)([^&]*)/, '$1$2&action=end');  ;
	}
	metrics_end_delay(endMetrics);
}
function metrics_end_delay(endMetrics) {
	return endMetrics.src;
}
// Rules Pop-Up
function rules() {
	window.open("index.tbapp?page=rules","rules","menu=no,toolbar=no,width=452,height=400,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=88,left=124");
}

// FAQ Pop-Up
function faq() {
  window.open("index.tbapp?page=contact_form","faq","menu=no,toolbar=no,width=452,height=400,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=48,left=48");
}

// Prize Pop-Up
function prizes() {
  window.open("index.tbapp?page=prize","prize","menu=no,toolbar=no,width=452,height=444,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=48,left=48");
}

// recipe sample Pop-Up
function recipe_sample() {
  window.open("index.tbapp?page=recipe_sample","recipe_sample","menu=no,toolbar=no,width=452,height=480,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=48,left=48");
}

//Forgot password
function forgot(session_id) {
  window.opener.location="index.tbapp?page=forgot_form&session_id="+session_id;
  window.close(); 
}	

// Image Security Information Pop-Up
function img_security() {
	window.open("index.tbapp?page=img_security_info","imgsec","menu=no,toolbar=no,width=452,height=290,scrollbars=0,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=132,left=196");
}

// Generic Pop-Up
// ex: <a href="javascript:openThis('http://www.eprize.com');">Click here</a>
function openThis(URL) {
  window.open(URL);
}

// New Window

function openWindow(link) {
  window.open(link, '_blank', 'toolbar=yes,status=yes,location=yes,menubar=yes,directories=yes,resizable=yes,scrollbars=yes');
}

// prizepop Pop-Up
function prizepop() {
    window.open("index.tbapp?page=prizepop","prizepop","menu=no,toolbar=no,width=550,height=510,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=48,left=48");
}


// No Cookies Popups

function cookies_faq() {
	window.open("index.tbapp?page=cookies_faq","cookies_faq","menu=no,toolbar=no,width=452,height=400,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=88,left=124");
}

function showhide(layer_ref) {
	if (state == 'visible') {
		state = 'hidden';
	} else {
		state = 'visible';
	}
	if (document.all) {
		eval( "document.all." + layer_ref + ".style.visibility = state");
	}
	if (document.layers) {
		document.layers[layer_ref].visibility = state;
	}
	if (document.getElementById && !document.all) {
		maxwell_smart = document.getElementById(layer_ref);
		maxwell_smart.style.visibility = state;
	}
}

function toggle_recipe() {
	if($("#expandit").is(":hidden")) {
		$("#expandit").slideDown("normal");
		$("#mrsclicky").show();
		$("#mrclicky").hide();
	} else if(!$("#expandit").is(":hidden")) {
		$("#expandit").slideUp("normal");
		$("#mrclicky").show();
		$("#mrsclicky").hide();
	}
};