function offers() {window.open('incentives.html','offers','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=475,height=300');
}

function directions() {window.open('locmap.html','directions','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=465,height=300');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function ShowHideDiv(dothis,tothat) {
	if(dothis == 'show') {
		display_setting = "block";
		more_link = "none";
	} else {
		display_setting = "none";
		more_link = "block";
	}
	
	document.getElementById(tothat + '_link').style.display = more_link;
	document.getElementById(tothat).style.display = display_setting;
}