// THIS FILE HAS DEFAULTf
// JS TO RUN EVERY PAGE LOAD
/////////////////////


/// QUICK FIX TO TURN ERRORS RED
$(document).ready(
function() {
	$(".input_fieldError").css({'border-color':'red'});
}
);
function emailMarketingForm() {
	window.open('/contact_marketing/email_marketing/?template=_plain_template','','toolbar=no,resizeable=no,scrollbars=no,width=620,height=680');
}


function websiteJumpMenu() {

	var e=document.getElementById("website_jump_menu");

	var id=e.options[e.selectedIndex].value;

	if(id>0) {
		document.location.href='/banner.php?sid='+id;
	}

}

function toggleDiv(id, state) {

	if ( state == 'on' ) {
		document.getElementById(''+id+'').style.visibility = "visible";
	}
	else {
		document.getElementById(''+id+'').style.visibility = "hidden";
	}

}


function make_blank()
{
document.form1.multi_search_field.value ="";
}


function helpPop(anchor) {


		window.open('/helpV2.php?template=_plain_template#'+anchor,'','height=500,width=850,toolbar=1,resizable=1,scrollbars=1');

}


