Solution for status bar spoofing security hole for several browser

Solving "Status Bar Spoofing Weakness" for Safari, Opera and some web browser.

I suggest to hide <a href="[URL]"><input type="image"></a> with using user stylesheet.
In normal way of HTML discription, <a href="[URL]"><input type="image"></a> is strange.
After vendor solved this problem officially, remove this stylesheet.

Solution:
Add following stylesheet to your user stylesheet.
This stylesheet hide <input type="image"> element inside <a>.

	form a input[type=image]{
	display:none ! important;
	}