// JavaScript Document
function redirect_form() {
		if (document.submit_agreement.accept[0].checked) {
			document.submit_agreement.submit();
		} else {
			alert("Because you did not accept the agreement, you will\nnow be re-directed back to our provider search page.");
			window.location = "training_providers.php";
		}
		
	}
	
function terms_popup() {
newwindow = window.open("training_providers_terms.php", "popup", "width=520,height=300,scrollbars=0,resizable=1,menubar=0,toolbar=0,location=0,status=0,directories=0,copyhistory=0");
}
function sample_popup() {
newwindow = window.open("listing_sample.php", "popup", "width=580,height=500,scrollbars=0,resizable=1,menubar=0,toolbar=0,location=0,status=0,directories=0,copyhistory=0");
}
