The below HTML code is to invite others in facebook to use your facebook application. The invite form enable you to add the email addresses of the persons to whom you want to send the invitation. The invite form also contains the inline description and the facebook application to describe of it brief
Code to Invite Facebook Users
<html>
<head></head>
<body>
<script type="text/javascript">
function showInviteForm() {
document.getElementById('inviteForm').setStyle('display','inline');
}
</script>
<style type="text/css">
#inviteForm {position:absolute; top:100px; left:65px; display:none;}
</style><div id="share">
<a href="#" onclick="showInviteForm(); return false;">Share with your Friends</a>
</div>
<div id="inviteForm">
<fb:request-form action="http://www.facebook.com/VW?v=app_104824399563675" method="POST" invite="true" type="Volkswagen Fan Page" content="Do you think you are a soccer fan? Enter the Volkswagen Fan Page and find out! <fb:req-choice url='http://www.facebook.com/VW?v=app_104824399563675' label='Go to Fan Page' />">
<fb:multi-friend-selector showborder="true" cols="4" rows="4" actiontext="Invite your friends to Volkswagen Fan Page." /></fb:request-form>
</div>
</body>
</html>