function testimonial(url, width, height) {
	var w = (width || 335);
	var h = (height || 280);
	testimonialWin = window.open(url, 'testimonial', 'width=' + w + ',height=' + h + ',left=50,top=50,scrollbars=0')
}
	
function getRegion(obj) {
	myArray = new Array(50);
	myArray["NJ"] = "Mid Atlantic";
	myArray["DE"] = "Mid Atlantic";
	myArray["DC"] = "Mid Atlantic";
	myArray["MD"] = "Mid Atlantic";
	myArray["VA"] = "Mid Atlantic";
	myArray["WV"] = "Mid Atlantic";
	myArray["OH"] = "Mid Atlantic";
	myArray["KY"] = "Mid Atlantic";
	myArray["ND"] = "Midwest";
	myArray["SD"] = "Midwest";
	myArray["NE"] = "Midwest";
	myArray["MN"] = "Midwest";
	myArray["IA"] = "Midwest";
	myArray["MO"] = "Midwest";
	myArray["WI"] = "Midwest";
	myArray["MI"] = "Midwest";
	myArray["IL"] = "Midwest";
	myArray["IN"] = "Midwest";
	myArray["ME"] = "Northeast";
	myArray["VT"] = "Northeast";
	myArray["NH"] = "Northeast";
	myArray["MA"] = "Northeast";
	myArray["RI"] = "Northeast";
	myArray["CT"] = "Northeast";
	myArray["NY"] = "Northeast";
	myArray["PA"] = "Northeast";
	myArray["AL"] = "South Central";
	myArray["AK"] = "South Central";
	myArray["MS"] = "South Central";
	myArray["LA"] = "South Central";
	myArray["OK"] = "South Central";
	myArray["TX"] = "South Central";
	myArray["KS"] = "South Central";
	myArray["FL"] = "Southeast";
	myArray["GA"] = "Southeast";
	myArray["SC"] = "Southeast";
	myArray["NC"] = "Southeast";
	myArray["TN"] = "Southeast";
	myArray["WA"] = "West";
	myArray["OR"] = "West";
	myArray["CA"] = "West";
	myArray["ID"] = "West";
	myArray["NV"] = "West";
	myArray["UT"] = "West";
	myArray["AZ"] = "West";
	myArray["MT"] = "West";
	myArray["WY"] = "West";
	myArray["CO"] = "West";
	myArray["NM"] = "West";
	myArray["AK"] = "West";
	myArray["HI"] = "West";

	document.getElementById('region').value=myArray[obj.value];
}

