if(document.getElementById)
{
	document.write('<form action="sm.php" method="post" id="email_link_form" style="display: none;">')
	document.write('<input type="hidden" name="abc123">')
	document.write('</form>')
	document.write('<a href="javascript:sm()">Click here to send an E-mail</a>,  (Your e-mail program will open) or use the form below.')
}

function sm()
{
	document.getElementById("email_link_form").submit()
}