function openSurveyPreviewWindow( ) {
	var win = window.open("","winsurveypreview","width=300,height=400");
	window.document.surveypreviewform.surveytext.value = getElement(window.document,"idsurveytext").value;
	window.document.surveypreviewform.a1.value = getElement(window.document,"ida1").value;
	window.document.surveypreviewform.a2.value = getElement(window.document,"ida2").value;
	window.document.surveypreviewform.a3.value = getElement(window.document,"ida3").value;
	window.document.surveypreviewform.a4.value = getElement(window.document,"ida4").value;
	window.document.surveypreviewform.a5.value = getElement(window.document,"ida5").value;
	window.document.surveypreviewform.a6.value = getElement(window.document,"ida6").value;
	window.document.surveypreviewform.submit( );
	return false;
}

function surveyVote( ) {
	var selected = "";
	selected = getSelected( "window.document.surveyform.fieldid" );
	if ( selected != "" ) {
		window.document.surveyform.submit( );
	}
	return false;
}
			
function sendSurvey( ) {
	var text = getElement(window.document,"idsurveytext").value;
	var a1 = getElement(window.document,"ida1").value;
	var a2 = getElement(window.document,"ida2").value;
	var a3 = getElement(window.document,"ida3").value;
	var a4 = getElement(window.document,"ida4").value;
	var a5 = getElement(window.document,"ida5").value;
	var a6 = getElement(window.document,"ida6").value;

	if ( text.length > 0 && (a1.length + a2.length + a3.length + a4.length + a5.length + a6.length) > 0 ) {
		window.document.surveyprocessform.surveytext.value = text;
		window.document.surveyprocessform.a1.value = a1;
		window.document.surveyprocessform.a2.value = a2;
		window.document.surveyprocessform.a3.value = a3;
		window.document.surveyprocessform.a4.value = a4;
		window.document.surveyprocessform.a5.value = a5;
		window.document.surveyprocessform.a6.value = a6;

		window.document.surveyprocessform.submit( );
	}
	return false;
}