function validate_form_get_report () {
	
		/* FOR TESTING ONLY */ //alert ('Validating a Get Report form');

    //THIS DOES NOT WORK FOR SAFARI!!
    return true;  // Until fixed 

//	Make sure they selected a Report
	myOption = -1;
	for (i=getCorrectId('form_get_report').report_id.length-1; i > -1; i--) {
	
		if (getCorrectId('form_get_report').report_id[i].checked) {
			
			myOption = i;
			
			i = -1;
		}
	}
	
	if (myOption == -1) {
		
		alert ('You must select a Report to view');
		
		return false;
	}

//	Make sure they selected a report type (excel / html)
	myOption = -1;
	
	for (i=getCorrectId('form_get_report').report_type.length-1; i > -1; i--) {
	
		if (getCorrectId('form_get_report').report_type[i].checked) {
			
			myOption = i;
			
			i = -1;
		}
	}
	
	if (myOption == -1) {
		
		alert ('You must select a Report Type');
		
		return false;
	}

}

