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

$(document).ready(function() {
	$('#qq-form').submit(checkValue);
});
function checkValue(e) {
	var printerror="The following item(s) must be filled in: ";
	if (this.imEmailField.value == "") printerror = printerror + "\nE-mail";
	if (this.Question.value == "") printerror = printerror + "\nYour Question";
	if (this.security_code.value == "") printerror = printerror + "\nSecurity Code";
	if (this.imEmailField.value != "" && this.Question.value != "" && this.security_code.value != '') {
		this.submit();
	}
	else {
		e.preventDefault();
		alert(printerror);
	}
}
