<!--//--><![CDATA[//><!--
function validate(obj) {
	$('#btnSubmit').attr("disabled", "true");
	obj.submit();
	return true;
}

function removeDocument(SID, fid) {
	if (!confirm('Are you sure you want to remove this document?'))
		return false;
	window.location = '/ops/jsForm.php?' + SID + '&cmd=removedocument&fid=' + fid;
	return true;
}
//--><!]]>