Glad you asked. I know the payment method docs are a little spotty here.
Your second argument should be a reference to the order object. Depending on which $op you're in, it will mostly contain a fully loaded order which includes a property called order_total that you should be able to check like so:
<?php if ($arg1->order_total > 100) { print 'The order is more than $100.'; } ?>