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_ex","rules","menu=no,toolbar=no,width=467,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=450,height=400,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=467,height=390,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=132,left=196");
}

// Security Privacy Pop-Up
function security_privacy() {
	window.open("index.tbapp?page=security_privacy_ex","security","menu=no,toolbar=no,width=467,height=450,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=132,left=196");
}



// Main window Pop-Up
// mode constants: NOT_LOGGED_IN, FIRST_LOGIN, LOGGED_IN
function mainLauncher(mode, my_house) {
	//window.open("index.tbapp?page=main&mode="+mode+"&my_house="+my_house,"main","menu=no,toolbar=no,width=950,height=600,scrollbars=0,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=132,left=196");
        window.location.href="index.tbapp?page=main&mode="+mode+"&my_house="+my_house;
}


function enterSite(emailAddress) {
	window.open("index.tbapp?page=login_form&email="+emailAddress, "main","menu=no,toolbar=no,width=950,height=600,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', 'width=800,height=600,toolbar=yes,status=yes,location=yes,menubar=yes,directories=yes,resizable=yes,scrollbars=yes');
}

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

function setTransparency(id, source)
{
    
    if(document.getElementById)
    {              
		if(document.getElementById(id).runtimeStyle)        
		{                     
			document.getElementById(id).style.backgroundImage = 'none';          
			document.getElementById(id).style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + source + "',sizingMethod='scale')";        
		}
    }
}
