I'm trying to specify a Placemark's description to have a hyperlink to another earth location, but not to another placemark. When the link is clicked, I simply want to fly to that location on the earth. I'm not sure how to do this. I've tried variations on the following KML tag below, but to no avail. The link appears in the balloon description, but doesn't change the view or do a flyto. Can this be done? Example below includes an MGRS position, which Google Earth's search bar understands.
<Placemark>
<name>Untitled Placemark</name>
<description><![CDATA[<a href="18S UH 27103 98673;flyto">Click Me</a>]]></description>
<styleUrl>#msn_ylw-pushpin</styleUrl>
<Point>
<altitudeMode>clampToGround</altitudeMode>
<gx:altitudeMode>clampToSeaFloor</gx:altitudeMode>
<coordinates>-76.99418723939422,48.82106388888889,0</coordinates>
</Point>
</Placemark>