<!--
function radio_check(collection) {
	var length = collection.length;
	for (var y=0; y < length; y++) {
		if (collection[y].checked) {
			return true;
		}
	}	
	return false;
}

function call_file_listing() {
	if (radio_check(document.frmAdminOptions.file_type_id)==false) {
		alert("Please select a file type.     ");
		return false;
	}
	else {
		frmAdminOptions.action = "admin_file_listing.asp";
		frmAdminOptions.submit();
	}
}

function navigate( page ) {
	frmAdminOptions.action = page;
	frmAdminOptions.submit();
}

function file_type_onclick( count )
{
	return true;
}	
//-->