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=450,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(); 

}	



// Photo Guidelines Pop-Up Message

function photo_guide_popup() {

	window.open("index.tbapp?page=photo_guide_popup","photo_guide_popup","menu=no,toolbar=no,width=450,height=400,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=132,left=196");

}







// Image Security Information Pop-Up

function img_security() {

	window.open("index.tbapp?page=img_security_info","imgsec","menu=no,toolbar=no,width=450,height=260,scrollbars=0,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=132,left=196");

}


function prize() {

	window.open("index.tbapp?page=prize","prize","menu=no,toolbar=no,width=470,height=700,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=132,left=196");

}

function federal() {

	window.open("index.tbapp?page=federal","federal","menu=no,toolbar=no,width=470,height=370,scrollbars=1,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");

}

var max_length = 255;
function character_check(field) {
    var temp_value;
    if (field.value.length > max_length) {
        temp_value = field.value.substr(0, max_length);
        field.value = temp_value;
    }
}
