
//  Handle the Ask A Question box redirection
jQuery(document).ready(function($) {
	if ($('#askq-dropdown').size() < 1) { return; }
	$('#GoAskQ').click(function() {
		loc = $('#askq-dropdown').attr('value');
		window.location = loc;
	});
//	$('#askq-dropdown').change(function() {
//		loc = $('#askq-dropdown').attr('value');
//		window.location = loc;
//	});
});

// Comment form: Must agree to terms/conditions
jQuery(document).ready(function($) {
	if ($('#commentform').size() < 1) { return; }
	$('#commentform #submit').click(function() {
		if ($('#commentform input#AgreeTerms').attr('checked') != true) {
			alert('You must agree to the Terms & Conditions');
			return false;
		}
	});
});
