<!--
function viewSurvey(url,wide,high) {
  var properties = '';
  properties = 'width=' + wide + ',height=' + high + ',toolbar=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,location=no';
  newWin = window.open(url,'survey',properties);
  newWin.focus();
	
	/*newwindow = window.open(url,'survey','location=no,menubar=no,height=400,width=450');
	if (window.focus) {newwindow.focus()}
	return false;*/
}

function submitFeedback(){
	if(document.frmFeedback.instrument.value == ''){
		alert("Please enter your instrument before submitting your survey");
		document.frmFeedback.instrument.focus();
	} else{
		document.frmFeedback.submit();
	}
}

function submitRepertoire(){
	document.frmRepertoire.submit();
}
//-->