You can use mobble for this (providing your site/host is not using a static cache)... Something along the lines of:
<?php if (is_mobile()) { ?>
<a href="http://linkmobile.com">Mobile</a>
<?php } else { ?>
<a href="http://linkdesktop.com">Desktop</a>
<?php } ?>
Will do what you are after.