Use java script.
Have a hidden field lets say named clicked. Then on your Convert input have onfocus(some jvscript) or onchange() I don't remeber. Then have the java script update the hidden field to a value of 1. then the user posts the form, have you php look at the value and if is 0 do something, if is 1 do something else:
<script language='javascript'>
function change_hidden() {
document.form1.clicked.value = 1
}
</script>
<form name="form1" method="post" action="<?=$_SERVER['PHP_SELF']?>>
<input name="Convert" type="image" border="0" alt="Excel" src="image/Excel.gif" value="Excel" onBlur='change_hidden();'>
<input type="submit" name="Submit" value="Submit">
<input type="hidden" name="clicked" value="0">
</form>
Give that a try, I have not tested it but I think it will work