// JavaScript Document
function SubmitBackTalkCheck(){ 
	var reBlank = /^\s*$/;
//	if (document.form1.topic.selectedIndex ==0) {
//		alert("Please select a Topic.");
//		document.form1.topic.focus();
//		return false;	
//	}

	var strValue = document.form1.details.value;
	if (reBlank.test(strValue)){
		alert("Please enter your comments/suggestions.");
		document.form1.details.focus();
		return false;
	}
}

function goBackTalkTopic(sTopic) { 
	location.href = 'backtalk.asp?topic=' + sTopic;
}
