/**
 * tboxUpdate
 * Updates the testimonial boxes, show the clicked object and hiding the others.
 *
 * @param	tbox	The clicked box
 */
function tboxUpdate(tbox) {
	var i;
	var tboxes;
	
	for(i = 0; i < 4; i++) {
		tboxes = document.getElementById("tbox" + i);
		if(i == tbox) {
			tboxes.className = "tboxActive";
		} else {
			tboxes.className = "tboxInactive";
		}
	}
}

function disclaimer() {
	dwindow = window.open('disclaimer.php','','resizable=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=500,height=280');
	dwindow.focus();
}

function showStates() {
	if(document.getElementsByName('edit[country]').item(0).value == 'USA') {
		document.getElementById('statehead').style.display = 'block';
		document.getElementById('stateselect').style.display = 'block';
	} else {
		document.getElementById('statehead').style.display = 'none';
		document.getElementById('stateselect').style.display = 'none';
	}
}